]
Hai Nguyen commented on GTNPORTAL-3258:
---------------------------------------
This issues has fixed
Allow classpath resolver to accept a leading slash
--------------------------------------------------
Key: GTNPORTAL-3258
URL:
https://issues.jboss.org/browse/GTNPORTAL-3258
Project: GateIn Portal
Issue Type: Enhancement
Reporter: Hai Nguyen
Assignee: Hai Nguyen
Priority: Minor
Fix For: 3.7.0.Final
Classpath Resolver for resources does not currently support a leading slash. So for
example in a webui component I can't put (or my template won't be found) :
{code}
@ComponentConfig (
template = "classpath:/path/oto/my/template/MyTemplate.gtmpl",
events = {
}
)
{code}
whereas this notation is allowed in kernel configuration. For example I can do :
{code}
<import>classpath:/path/to/my/configuration/file/my-configuration.xml</import>
{code}
and it is also allowed in the "app" resolver (I can do
"app:/path/oto/my/template/MyTemplate.gtmpl").
It would be more consistent and less error-prone for the developer to allow to add a
leading slash for the classpath resolver.