AsynchronousDispatcher error

后端 未结 5 987
野的像风
野的像风 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:14

    I was using wildfly 10 to deploy my application when I got this error and tried the above solutions and didn't work for me and finally I had to exclude the jar resteasy-jaxrs using maven exclusions

        
            org.jboss.resteasy
            resteasy-servlet-initializer
            3.0.19.Final
            provided
            
                
                    resteasy-jaxrs
                    org.jboss.resteasy
                
            
        
    

提交回复
热议问题