struts1.3 的异常怎么查? 不显示出来..
<action name="messageServiceForm" path="/Message"
type="org.springframework.web.struts.DelegatingActionProxy"
input="/Message"
parameter="method"
validate="false"
scope="request">
<forward name="testChannel" path="/WEB-INF/admin/TestChannel.jsp" / </action>
<global-exceptions>
<exception key="errors.message" type="java.lang.Exception" path="/common/ErrorExceptionPage.jsp" scope="request"/>
</global-exceptions>
public ActionForward testChannel(ActionMapping map1, ActionForm aform, HttpServletRequest re, HttpServletResponse res) {
System.out.println("aaaa");
return map1.findForward("testChannel");
}