Deploying a Jersey webapp on Jboss AS 7

后端 未结 11 1161
既然无缘
既然无缘 2020-12-01 06:13

Currently running some webapps on Jboss AS 4/5 and I am testing migration to jboss7. When I try to deploy a jersey based webapp on JBoss AS 7 (full profile with standalone-p

11条回答
  •  既然无缘
    2020-12-01 06:59

    it has already been mentioned in this post : https://community.jboss.org/message/744530#744530 , you can just ask the resteasy module to not scan for other JAX RS implementations in your webapp; just add this to your web.xml :

    
        resteasy.scan
        false
    
    
        resteasy.scan.providers
        false
    
    
        resteasy.scan.resources
        false
    
    

    worked fine for me

提交回复
热议问题