AsynchronousDispatcher error

后端 未结 5 986
野的像风
野的像风 2021-01-01 16:45

i am getting the error when i try to upload a file based exactly off the example shown here Sample

The error is

Allocate exception for servle

5条回答
  •  生来不讨喜
    2021-01-01 17:22

    If deploying to JBoss 7.x you need to change the scope of your resteasy dependencies to provided. This is because those particular libraries are already included in JBoss as modules:

    
        org.jboss.resteasy
        resteasy-jaxrs
        2.2.1.GA
        provided
    
    
    
        org.jboss.resteasy
        resteasy-multipart-provider
        2.2.0.GA
        provided
    
    

提交回复
热议问题