我是这些技术的新手,我正在使用以下框架来开发应用程序:
我正在Spring中实现所有业务逻辑,所以如果发生任何异常,我将向最终用户显示自定义消息。
请您解释一下如何在这些技术中开发异常处理功能?
答案 0 :(得分:1)
根据我的理解,最好的方法是为您的Business层定义一些预定义的Exceptions,并将这些Exception抛回Action类。
S2提供了许多方法来处理这些异常并将其显示给用户,这里有一些
使用Struts 2框架,您可以在struts.xml中指定框架应如何处理未捕获的异常。处理逻辑可以应用于所有操作(全局异常处理)或特定操作。我们首先讨论如何启用全局异常处理。
<global-exception-mappings>
<exception-mapping exception="org.apache.struts.register.exceptions.SecurityBreachException" result="securityerror" />
<exception-mapping exception="java.lang.Exception" result="error" />
</global-exception-mappings>
<global-results>
<result name="securityerror">/securityerror.jsp</result>
<result name="error">/error.jsp</result>
</global-results>
即使您需要精细级别控制,您也可以按行动配置异常处理
<action name="actionspecificexception" class="org.apache.struts.register.action.Register" method="throwSecurityException">
<exception-mapping exception="org.apache.struts.register.exceptions.SecurityBreachException"
result="login" />
<result>/register.jsp</result>
<result name="login">/login.jsp</result>
</action>
您的偏好,您希望如何配置它们。有关详细信息,请参阅文档
您甚至可以选择从Value-Stack访问Exception详细信息。默认情况下,ExceptionMappingInterceptor
将以下值添加到值堆栈中:
以下是在JSP中访问这些对象的方法
<s:property value="%{exception.message}"/>
<s:property value="%{exceptionStack}"/>
详情请参阅
答案 1 :(得分:0)