Jersey ExceptionMapper doesn't map exceptions

前端 未结 4 1323
逝去的感伤
逝去的感伤 2020-12-19 04:05

my Spring Boot + Jersey REST service doesn\'t work as expected.

EmailExistsException is thrown in UserController but I only receive error 500. All the time. And my e

4条回答
  •  一整个雨季
    2020-12-19 04:48

    I had the same problem

    I just mentioned the root package on the web.xml file in tag of

    Then It started working like charm

    
        Jersey Web Application
        org.glassfish.jersey.servlet.ServletContainer
        
            jersey.config.server.provider.packages
            com.two95.restful
        
        1
    
    

提交回复
热议问题