If I create a dynamic web application in Eclipse and the context root doesn't match the WAR name, I get an error when starting up the associated Tomcat 7 server...
SEVERE: Unable to process JNDI URL [jndi:/localhost/tests/example1/WEB-INF/classes] for annotations
java.io.FileNotFoundException: jndi:/localhost/tests/example1/WEB-INF/classes
at org.apache.naming.resources.DirContextURLConnection.list(DirContextURLConnection.java:452)
at org.apache.catalina.startup.ContextConfig.processAnnotationsJndi(ContextConfig.java:1843)
at org.apache.catalina.startup.ContextConfig.processAnnotationsUrl(ContextConfig.java:1770)
etc,
The relevant part (I think) of the server.xml file is,
<Context docBase="MyExample" path="/tests/example1" reloadable="true" source="org.eclipse.jst.jee.server:MyExample"/>
The application is accessible via the /tests/example1 as I'd expect, but servlet annotations don't work and the error itself causes the server startup to take longer than it should. If the context root matches the WAR name, it works fine, but that will be a problem for me going forward.
Any ideas how I can work around this?
UPDATE: I've found this to only happen if the modified context root contains a /. If I change the context root to "tests-example1" it works.