[jboss-jira] [JBoss JIRA] (AS7-3162) RESTEasy: Unknown servet name javax.ws.rs.core.Application when javax.ws.rs.core.Application subclass is on classpath

Pavel Janousek (Moved) (JIRA) jira-events at lists.jboss.org
Tue Jan 3 06:34:09 EST 2012


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

Pavel Janousek moved JBPAPP-7833 to AS7-3162:
---------------------------------------------

              Project: Application Server 7  (was: JBoss Enterprise Application Platform)
                  Key: AS7-3162  (was: JBPAPP-7833)
             Workflow: GIT Pull Request workflow   (was: jira)
    Affects Version/s: 7.1.0.CR1b
                           (was: EAP 6.0.0 DR 11)
          Component/s: REST
                           (was: RESTEasy)
             Security:     (was: JBoss Internal)
       Docs QE Status:   (was: NEW)

    
> RESTEasy: Unknown servet name javax.ws.rs.core.Application when javax.ws.rs.core.Application subclass is on classpath 
> ----------------------------------------------------------------------------------------------------------------------
>
>                 Key: AS7-3162
>                 URL: https://issues.jboss.org/browse/AS7-3162
>             Project: Application Server 7
>          Issue Type: Bug
>          Components: REST
>    Affects Versions: 7.1.0.CR1b
>            Reporter: Pavel Janousek
>            Assignee: Weinan Li
>            Priority: Blocker
>
> I've deployment like this:
> {code}
> @Deployment
> public static Archive<?> deploy() {
> 	WebArchive war = ShrinkWrap.create(WebArchive.class, "jaxrsnoap.war");
> 	war.addPackage(HttpRequest.class.getPackage());
> 	war.addClasses(ApplicationTestCase.class, ApplicationInvalid1.class);
> 	war.addAsWebInfResource(
> 			WebXml.get("<servlet-mapping>\n"
> 					+ "        <servlet-name>javax.ws.rs.core.Application</servlet-name>\n"
> 					+ "        <url-pattern>/myjaxrs/*</url-pattern>\n"
> 					+ "</servlet-mapping>\n" + "\n"), "web.xml");
> 	return war;
> }
> {code}
> This deployment fails during deploying because of "Context [/jaxrsnoap] startup failed due to previous errors: java.lang.IllegalArgumentException: Servlet mapping specifies an unknown servlet name javax.ws.rs.core.Application"
> ApplicationInvalid1 is empty subclass of javax.ws.rs.core.Application like:
> {code}
> public class ApplicationInvalid1 extends Application {
> 	private Set<Class<?>> classes = new HashSet<Class<?>>();
> 	public ApplicationInvalid1() {
> 	}
> 	@Override
> 	public Set<Class<?>> getClasses() {
> 		return classes;
> 	}
> }
> {code}
> There isn't any reference to this class in web.xml or somewhere else. Only class is placed on classpath. If I remove this class from deployment (= change appropriate line to "war.addClasses(ApplicationTestCase.class);", everything will be OK.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the jboss-jira mailing list