首先我们的国际化资源文件中有
user.not.found = 用户不能找到,用户名称=[{0}]
user.password.error = user.password.error
第一种 声明式异常处理
为国际化配置文件中的每个key,设计一个异常。
用户登录验证,用户名错误抛出UserNotFoundException,密码错误抛出PasswordErrorException
public void login(String username, String password) {
if (!"admin".equals()) {
throw new UserNotFoundException();
}
if (!"admin".equals(password)) {
throw new PasswordErrorException();
}
}
struts-config.xml文件中,<exception/>的key对应国际化配置文件中key,type是对应的异常处理类
<global-exceptions>
<!-- 为所有Action使用的,全局异常 -->
<exception key="user.not.found" type="demo.struts.UserNotFoundException"/>
<exception key="user.password.error" type="demo.struts.PasswordErrorException"/>
</global-exceptions>
<action-mappings>
<action path="/login"
type="demo.struts.LoginAction"
name="loginForm"
scope="request"
validate="false"
input="/login.jsp"
>
<!-- path 错误时候 跳转的页面,优先级高于 action中的input -->
<!-- 为每一个action配置
<exception key="user.not.found" type="demo.struts.UserNotFoundException" path="/login_error.jsp"/>
<exception key="user.password.error" type="demo.struts.PasswordErrorException" path="/login_error.jsp"/>
-->
<forward name="success" path="/login_success.jsp"/>
<forward name="error" path="/login.jsp"/>
</action>
<action path="/changelang"
type="demo.struts.ChangeLanguageAction"
>
<forward name="index" path="/index.jsp"/>
</action>
</action-mappings>
Struts的RequestProcessor类
protected ActionForward processException(HttpServletRequest request,
HttpServletResponse response,
Exception exception,
ActionForm form,
ActionMapping mapping)
throws IOException, ServletException {
// 是否在配置了Exception
ExceptionConfig config = mapping.findException(exception.getClass());
// 找到的config就是下面这条信息
// <exception key="user.not.found" type="demo.struts.UserNotFoundException" path="/login_error.jsp"/>
if (config == null) {
// 没有配置,struts不管了,往web容器里抛,看在web.xml文件中是否配置,
// 如果仍没有配置,则把异常显示到页面上
log.warn(getInternal().getMessage("unhandledException",
exception.getClass()));
if (exception instanceof IOException) {
throw (IOException) exception;
} else if (exception instanceof ServletException) {
throw (ServletException) exception;
} else {
throw new ServletException(exception);
}
}
// struts异常默认处理类
try {
ExceptionHandler handler = (ExceptionHandler)
RequestUtils.applicationInstance(config.getHandler());
return (handler.execute(exception, config, mapping, form,
request, response));
} catch (Exception e) {
throw new ServletException(e);
}
}
struts默认的exceptionHandler
public ActionForward execute(
Exception ex,
ExceptionConfig ae,
ActionMapping mapping,
ActionForm formInstance,
HttpServletRequest request,
HttpServletResponse response)
throws ServletException {
ActionForward forward = null;
ActionMessage error = null;
String property = null;
// 在<exception>中配置了path,返回actionForward就是path中的配置
if (ae.getPath() != null) {
forward = new ActionForward(ae.getPath());
} else {
// 没有配置的话,返回actionForward就是<action>中的input
forward = mapping.getInputForward();
}
// Figure out the error
if (ex instanceof ModuleException) {
error = ((ModuleException) ex).getActionMessage();
property = ((ModuleException) ex).getProperty();
} else {
// 我们写的程序抛出的异常都是这种情况
// 从国际化文件中,根据key取
// ae.getKey() -- 拿到<exception>中key值 user.not.found
error = new ActionMessage(ae.getKey(), ex.getMessage());
// 集合ActionMessages中的key,和国际化资源文件中的key一样
property = error.getKey();
}
this.logException(ex);
// Store the exception
request.setAttribute(Globals.EXCEPTION_KEY, ex);
// 放到ActionMessages集合中 getScope()默认request
this.storeException(request, property, error, forward, ae.getScope());
return forward;
}
第二种 个性化异常处理
public void login(String username, String password) {
if (!"admin".equals(username)) {
//user.not.found资源文件中的key, username 占位符
throw new ErrorCodeException("user.not.found", username);
}
if (!"admin".equals(password)) {
throw new ErrorCodeException("user.password.error");
}
<global-exceptions>
<!-- key值随便配一个 具体的是在程序中控制-->
<!-- type异常类 handler异常处理类 都是由我们来写和控制 -->
<exception key="error.exception" type="demo.struts.ErrorCodeException" handler="demo.struts.ErrorCodeExceptionHandler"/>
</global-exceptions>
public class ErrorCodeException extends RuntimeException {
// 错误码就是国际化资源文件的key
private String errorCode;
// 占位符
private Object[] args;
public ErrorCodeException(String errorCode) {
this(errorCode, null);
}
public ErrorCodeException(String errorCode, Object arg) {
this(errorCode, new Object[]{arg});
}
public ErrorCodeException(String errorCode, Object[] args){
this.errorCode = errorCode;
this.args = args;
}
// 只提供get方法
public String getErrorCode() {
return errorCode;
}
public Object[] getArgs() {
return args;
}
public class ErrorCodeExceptionHandler extends ExceptionHandler {
public ActionForward execute(Exception ex, ExceptionConfig ae,
ActionMapping mapping, ActionForm formInstance,
HttpServletRequest request, HttpServletResponse response)
throws ServletException {
// 不是ErrorCodeException,我们不处理
if (!(ex instanceof ErrorCodeException)) {
return super.execute(ex, ae, mapping, formInstance, request, response);
}
ActionForward forward = null;
ActionMessage error = null;
String property = null;
// Build the forward from the exception mapping if it exists
// or from the form input
if (ae.getPath() != null) {
forward = new ActionForward(ae.getPath());
} else {
forward = mapping.getInputForward();
}
// Figure out the error
if (ex instanceof ModuleException) {
error = ((ModuleException) ex).getActionMessage();
property = ((ModuleException) ex).getProperty();
} else {
// 原来的代码 error = new ActionMessage(ae.getKey(), ex.getMessage());
// ae.getKey() 拿出的key是配置文件中<exception>写的,因为所有异常都用同一个key
// 无法找到国际化资源文件中的key,好在我们在抛异常时,把key写进异常的errorCode中
ErrorCodeException ece = (ErrorCodeException) ex;
// 拿到errorCode
String errorCode = ece.getErrorCode();
// 拿到占位符
Object[] args = ece.getArgs();
error = new ActionMessage(errorCode, args);
property = error.getKey();
}
this.logException(ex);
// Store the exception
request.setAttribute(Globals.EXCEPTION_KEY, ex);
this.storeException(request, property, error, forward, ae.getScope());
return forward;
}
如果我们不想写国际化配置文件,在程序中之际页面提示内容
<!-- 用默认的handler也能能执行 -->
<exception key="error.exception" type="demo.struts.AppException" handler="demo.struts.AppExceptionHandler"/>
# 只有一个占位符
error.exception={0}
public void login(String username, String password) {
if (!"admin".equals(username)) {
// 直接写内容
throw new AppException("用户不能找到【" + username + "】");
}
if (!"admin".equals(password)) {
throw new ErrorCodeException("密码错误");
}
}
public class AppException extends RuntimeException {
public AppException(String msg){
super(msg);
}
}
public class AppExceptionHandler extends ExceptionHandler {
public ActionForward execute(Exception ex, ExceptionConfig ae,
ActionMapping mapping, ActionForm formInstance,
HttpServletRequest request, HttpServletResponse response)
throws ServletException {
if(!(ex instanceof AppException)){
return super.execute(ex, ae, mapping, formInstance, request, response);
}
ActionForward forward = null;
ActionMessage error = null;
String property = null;
// Build the forward from the exception mapping if it exists
// or from the form input
if (ae.getPath() != null) {
forward = new ActionForward(ae.getPath());
} else {
forward = mapping.getInputForward();
}
// Figure out the error
if (ex instanceof ModuleException) {
error = ((ModuleException) ex).getActionMessage();
property = ((ModuleException) ex).getProperty();
} else {
AppException appe = (AppException) ex;
// ae.getKey() 没用
// appe.getMessage() ("用户不能找到【" + username + "】
error = new ActionMessage(ae.getKey(), appe.getMessage());
property = error.getKey();
}
this.logException(ex);
// Store the exception
request.setAttribute(Globals.EXCEPTION_KEY, ex);
this.storeException(request, property, error, forward, ae.getScope());
return forward;
}
附件是两个的myeclipse工程
分享到:
相关推荐
通过在配置文件中定义异常映射,我们可以避免在代码中大量使用try-catch块,使得代码更加清晰,同时也能更好地控制异常的流向和处理方式。结合JSP页面的访问,我们可以向用户展示友好的错误信息,提升用户体验。在...
Cookie则是另一种存储客户端信息的方式,常用于实现用户身份验证或个性化设置。 9. **异常处理**:JSP可以通过 isErrorPage 和 errorPage 指令处理错误,或者使用try-catch-finally语句块进行异常捕获。 10. **MVC...
8. **会话管理**:JSP可以使用session对象来跟踪用户的会话状态,实现个性化和安全的用户交互。 9. **错误处理与异常处理**:通过error page和try-catch-finally结构,可以对可能出现的错误和异常进行处理。 10. *...
8. **Session与Cookie管理**:JSP可以使用HttpSession接口来管理用户会话,而Cookie则常用于客户端的状态管理,如用户登录状态和个性化设置。 9. **异常处理**:JSP支持在页面级别和应用级别的异常处理,可以使用`...
6. **错误处理和异常处理**:理解 JSP 的错误处理机制,如 error page 指令,以及如何在 JSP 中捕获和处理异常,确保应用程序的健壮性。 7. **MVC (Model-View-Controller)** 设计模式:虽然 JSP 自身支持 MVC,但...
J2EE开发规范旨在消除个性化编程风格,确保代码的一致性和可维护性,促进团队成员之间的有效沟通。它基于行业最佳实践和实战经验,覆盖了从开发环境设置到代码审查的各个方面。规范的核心在于创建一种公司级的统一...
8. **错误处理和异常处理**:了解如何在JSP和Servlet中捕获和处理错误,确保应用的健壮性。 9. **数据库集成**:学习使用JDBC(Java Database Connectivity)连接和操作数据库,以及如何在JSP中显示查询结果。 10....
2. **会话管理**:通过session对象跟踪用户状态,实现个性化展示和购物车功能。 3. **文件上传与下载**:利用HTTP协议处理文件上传,创建下载链接。 4. **错误与异常处理**:设置错误页面,处理运行时可能出现的...
java编译器要求方法必须声明抛出可能发生的非运行时异常,但是并不要求必须声明抛出未被捕获的运行时异常。 9、说出Servlet的生命周期,并说出Servlet和CGI的区别。 Servlet被服务器实例化后,容器运行其init方法...
其中使用Struts作为系统的整体基础架构,负责MVC的分离,在Struts框架的模型部分,控制业务跳转,利用Hibernate框架对持久层提供支持,Spring做管理,管理Struts和Hibernate。 WebStorage HTML新增的本地存储解决...