异常信息strut2+Hibernate

错误信息:  在Struts2 中如果配置了  异常处理, 那么 Hibernate 抛出的异常,连在 Console 台 都看不到,所以,在 开发和调试的时候 ,最好是把 异常信息 注释掉,  但必须写, 不然 越来越多的action 错误信息,不可能都给end User 吧!

<!-- 异常配置		
		<global-results>
			<result name="ServiceException">bbsman/commons/ServiceException.jsp</result>
			<result name="DaoException">bbsman/commons/DaoException.jsp</result>
			<result name="SystemException">bbsman/commons/SystemException.jsp</result>
		</global-results>
		
		<global-exception-mappings>
			<exception-mapping result="ServiceException" exception="com.bbs.service.exception.ServiceException"/>
			<exception-mapping result="DaoException" exception="com.bbs.service.exception.DaoException"/>
			<exception-mapping result="SystemException" exception="java.lang.Exception"/>
		</global-exception-mappings>
 -->

 

你可能感兴趣的:(Hibernate,jsp,bbs)