博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Struts2基于注解的登陆与验证示例
阅读量:5935 次
发布时间:2019-06-19

本文共 2690 字,大约阅读时间需要 8 分钟。

hot3.png

    Struts2是个优秀的MVC框架。有人说java的框架是把简单的东西搞得复杂,而我不这样认为。学习框架之前可能会这样认为,学了之后就会感觉框架当然是在简化问题,否则也不会有这么多人用了。本文介绍如何用eclipse如何创建一个Struts2基于注解的登陆验证动态网页工程。通俗的说来,我们用浏览器发送一个请求到服务器,服务器验证通过则进入欢迎页,否则给出错误提示。

     在eclipse中新建名为Struts2Demo项目,要在项目中使用Struts2框架,先要下载Struts2的相关jar包,在本站可以很容易搜索到。然后把需要的jar包添加到项目的lib目录中。项目各文件结构如下图:

    为了使项目支持Struts2框架,配置web.xml文件:

struts2
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
struts2
/*

    再配置struts.xml文件,此文件一定要位于src文件目录下,否则配置无效。我做此项目时由于此文件没放在src目录下,而是放在了action所在的包中,导致一直运行不出来,浪费的半天时间。 struts.xml内容如下:

再看用户的请求页面:

<%@ page language="java" contentType="text/html; charset=GBK"	pageEncoding="GBK"%><%@taglib uri="/struts-tags" prefix="s"%>
Welcome User

上面的页面中form的action为welcome意思是页面提交到名为welcome页面或action处理。产后的Url请求为http://localhost:8080/Struts2Demo/welcome。然后我们创建一个处理此请求的action。

package org.sunhing.actions;import org.apache.struts2.convention.annotation.Action;import org.apache.struts2.convention.annotation.Result;import com.opensymphony.xwork2.ActionSupport;@Action(value="/welcome",results={		@Result(name = "success", location = "/welcome.jsp"),		@Result(name = "input", location = "/index.jsp")})public class Welcome extends ActionSupport{	private static final long serialVersionUID = 1L;	private String userName;	private String message;		public String execute() {		setMessage("Hello " + getUserName());		return SUCCESS;	}		@Override	public void validate() {		if("".equals(userName)){			addFieldError("userName", "用户名不能为空!");		}	}	public void setUserName(String userName) {		this.userName = userName;	}	public void setMessage(String message) {		this.message = message;	}	public String getUserName() {		return userName;	}	public String getMessage() {		return message;	}}

     以上代碼中的注解:
@Action(value="/welcome",results={ @Result(name = "success", location = "/welcome.jsp"), @Result(name = "input", location = "/index.jsp")} )

    意思即为当我们的请求为/weclome(写全了为http://localhost:8080/Struts2Demo/welcome)时此请求交给此action处理。当上面的validate函数中校验有错误时会返回"input",此时Struts2找到要跳转的jsp页面index.jsp,如下左图。

若校验通过则跳转到welcome.jsp,如上右图。下面是welcome.jsp页面代码:

<%@ page language="java" contentType="text/html; charset=GBK"	pageEncoding="GBK"%><%@taglib uri="/struts-tags" prefix="s"%>
Insert title here

    总结一下,Struts2为我们封装了很多常用的功能,避免了我们“重复造轮子”。

  •     请求参数的自动获取。我们要做的是保证表单与要处理的action中的属性名一致即可(准确的说只需保持与属性对应getXXX()方法中的XXX一致即可)。
  •      页面的自动跳转。 ActionSupport类已经为我们封装了大量常用的方法,继承此类后我们可以直接调用此类的很多方法,完成我们需要的功能。
  •     提供<s:debug></s:debug>标签,大大的方便了我们的调试。

转载于:https://my.oschina.net/jellyHome/blog/40564

你可能感兴趣的文章
poj2186
查看>>
mysql索引
查看>>
【原创】昆虫棋离线复盘工具旗舰版v0.26 更新(BoardSpace.net hive games reviewer ultimate edition)...
查看>>
多线程编程入门练习
查看>>
zabbix部署
查看>>
L88
查看>>
Bootstrap模态弹出框
查看>>
[转]经验分享:CSS浮动(float,clear)通俗讲解
查看>>
Sqoop Export HDFS
查看>>
实验报告二
查看>>
windows下根据端口找pid
查看>>
Python内置函数Str() VS repr() 及__str__() VS __repr__()方法
查看>>
springmvc常用注解
查看>>
BZOJ1026:[SCOI2009]windy数——题解
查看>>
关于Spring中的<context:annotation-config/>配置(开启注解)
查看>>
Servlet实现Cookie自动登录,并显示保存的用户信息
查看>>
iOS项目质量管理自动化
查看>>
Android 记录
查看>>
html----rem结合vw布局
查看>>
Apache——DBUtils框架ResultSetHandler接口使用
查看>>