-
Bug
-
Resolution: Won't Do
-
Major
-
None
The binding resources of type URL by @Resource annotations leads to not deployable application.
The code of the prior test which tests this functionality could be seen on:
http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/trunk/testsuite/src/test/java/org/jboss/ejb3/test/ejbthree989/ResUrlCheckerBean.java
The problematic injections are following:
@Stateless
@Remote(ResUrlChecker.class)
@Resources({
@Resource(name="url3", type=java.net.URL.class, mappedName="http://localhost/url3")
})
public class ResUrlCheckerBean implements ResUrlChecker
{
@Resource(mappedName="http://localhost")
private URL url1;
}
- clones
-
JBPAPP-7593 Injection resources of type URL by @Resource annotation
-
- Resolved
-