到目前为止,我在过滤器的HTTPResponse中手动将状态设置为403.有没有更好的处理这种情况的方法?
you should use something like this
在web.xml中设置错误处理程序
<error-page> <exception-type>java.lang.RuntimeException</exception-type> <location>/handleExceptionService</location> </error-page>
所以,当你达到你的服务,你可以做你想要的错误.
祝你好运!!!