Jersey setup on app engine

后端 未结 1 1206
南旧
南旧 2021-02-11 04:08

I recently added jersey to my app engine project, everything works great on my local machine but when I try to access the page on the deployed site I get errors. I think I migh

1条回答
  •  梦如初夏
    2021-02-11 04:51

    You need to add

    
        com.sun.jersey.config.feature.DisableWADL
        true
    
    

    to web.xml

    This prevents classes that use reflection, which is not allowed on app engine.

    0 讨论(0)
提交回复
热议问题