施用struts2实现简单的登陆,熟悉struts2流程,附详细注释源码
使用struts2实现简单的登陆,熟悉struts2流程,附详细注释源码@author 中文demo站:quankeURLhttp://www.cnde
使用struts2实现简单的登陆,熟悉struts2流程,附详细注释源码
@author 中文demo站:quanke
URLhttp://www.cndemoz.com
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd">
<struts>
? ? ? ? <!--?
? ? ? ? 使用struts2实现简单的登陆,熟悉struts2流程,附详细注释源码
? ?? ? ? ? 中文demo站:www.cndemoz.com
? ?? ? ? ? 附加中文编码过滤器,测试告别乱码问题
??? ? ? ? 此例只是熟悉struts2的工作流程,所以没有使用数据库,需要连接数据库的可以自行增加数据库
? ? ? ???-->
? ? ? ? <!-- package相当于java里的包的概念,name可以随便写, extends相当于java继承的概念-->
? ? ? ? <package name="user" extends="struts-default">
? ? ? ? ? ? ? ? <!-- action的name为在用户提交过来的action,class就是提交后处理的类,method为执行此提交的方法 -->
? ? ? ? ? ? ? ? <action name="login" method="login">
? ? ? ? ? ? ? ? ? ? ? ? <!-- method返回的字符串,if返回success就跳转到loginsuccess.jsp -->
? ? ? ? ? ? ? ? ? ? ? ? <result name="success">loginsuccess.jsp</result>
? ? ? ? ? ? ? ? ? ? ? ? <result name="error">loginerror.jsp</result>
? ? ? ? ? ? ? ? </action>
? ? ? ? </package>
</struts>? ?复制代码
?该贴已经同步到?quanke的微博原文地址:http://www.cndemoz.com/thread-87-1-1.html