[weld-issues] [JBoss JIRA] Updated: (WELD-617) Can not find beans when deploying compressed Archive to Tomcat

Pete Muir (JIRA) jira-events at lists.jboss.org
Sat Nov 13 06:49:43 EST 2010


     [ https://jira.jboss.org/browse/WELD-617?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Pete Muir updated WELD-617:
---------------------------

    Workaround Description: Use exploded deployment
                Workaround: [Workaround Exists]
                  Priority: Minor  (was: Major)


> Can not find beans when deploying compressed Archive to Tomcat
> --------------------------------------------------------------
>
>                 Key: WELD-617
>                 URL: https://jira.jboss.org/browse/WELD-617
>             Project: Weld
>          Issue Type: Bug
>          Components: Servlet Container Support
>    Affects Versions: 1.0.1.Final
>            Reporter: Aslak Knutsen
>            Priority: Minor
>             Fix For: 1.1.0.CR1
>
>
> When deploying a compressed Archive on Tomcat, WebAppBeanDeploymentArchive.scan fails to find and classes.
> In WebAppBeanDeploymentArchive.scan we try to get the File object representation of the WEB-INF/classes directory so we can recursively scan for classes, but in Tomcat this is a URL to jndi backed by a DirContext.
> WebAppBeanDeploymentArchive.scan 
> { // inside scan
>   File webInfClasses = Servlets.getRealFile(servletContext, WEB_INF_CLASSES);
>   { // inside getRealFile
>     String realPath = servletContext.getRealPath(path);
>     realPath == null
>     URL resourcePath = servletContext.getResource(path);
>     resourcePath == jndi:/localhost/test/WEB-INF/classes
>   }
>   webInfClasses == null
> }
> End result is no classes are found.

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the weld-issues mailing list