Resteasy with Google App Engine

后端 未结 3 1422
我在风中等你
我在风中等你 2021-01-03 12:33

I have a working Rest web service that use JBoss Resteasy however when I tried to port it to use GAE I\'m getting this error when executing:

java.lang.ClassN         


        
3条回答
  •  感情败类
    2021-01-03 13:18

    I used resteasy successfully on GAE. As csturtz mentioned make sure your project has the resteasy dependency.

    If yo uare using Maven this should be something like:

    
        org.jboss.resteasy
        resteasy-jaxrs
        ${resteasy.version}
    
    

    And optionally you also would like to use:

    
        org.jboss.resteasy
        resteasy-hibernatevalidator-provider
        ${resteasy.version}
    
    
        org.jboss.resteasy
        resteasy-jackson-provider
        ${resteasy.version}
    
    

提交回复
热议问题