在我的 portlet 中,我想以一种方式处理所有异常。中配置错误类型web.xml
。这是我的代码web.xml
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/WEB-INF/jsp/error.jsp</location>
</error-page>
error.jsp
<%@ page isErrorPage="true"%>
no available now!
发生nullpointerexception
时,它不会转到我的error.jsp
页面。