struts2中的ActionSupport类

struts2中的ActionSupport类

我们在使用struts2,写其中的Action类的时候,为了规范同时也为了方便使用更多已经声明或者写好了的方法,我们通常会继承ActionSupport类,其中默认使用execute作为执行方法,如果你写了自己的方法,就不用执行这个方法了,最后的return返回一个字符串,其实是返回一个页面,这个需要在struts2的配置文件中配置。

继承AcitionSupport后,通过一个属性声明,然后实现set,get方法,就可以获取前台传递过来的参数。ActionContext类似于request,客户端发送一个请求,当请求完毕后,ActionContext里的内容将被释放。
如果想用session也可以用下面的方式:
Map session = ActionContext.getContext().getSession();
session.put("userList", list);

注意默认的返回值里面在Struts中,它把一些常用的SUCCESS, NONE, ERROR, INPOUT, LOGIN 都定义了一遍。SUCCESS其实就是"success"。

1.首先来一个开始的网页,也就是开始访问的网页,点击下边的提交按钮,就去后台中的配置文件struts.xml中寻找一个action,名字叫sSHActionTest

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




Insert title here


	
这个是开始网页
用户名:
密码:

 

2,写配置类




	
		
			/success2.jsp
		
	

3.写一个Action类,也就是点击提交按钮后,去struts.xml中找一个action name="sSHActionTest”对应的一个访问的action类

package cqupt.ssh.action;

import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;

public class SSHActionTest extends ActionSupport{
	private String username;
	private String password;
	
	public String getUsername() {
		return username;
	}

	public void setUsername(String username) {
		this.username = username;
	}

	public String getPassword() {
		return password;
	}

	public void setPassword(String password) {
		this.password = password;
	}

	public String execute() throws Exception {

		//获取ActionContext对象,同时把前端获取的东西放入到一个对象里面
		ActionContext context=ActionContext.getContext();
		context.put("username", username);
		context.put("password", password);
		
		
		return "success2";//然后要去struts.xml中配置一波,我们的success2对应的跳转页面
	}
}

4.来一个返回的页面,根据action中的return语句中的字符串success2,取配置文件中struts.xml中找这个字符串对应的跳转页面是success2.jsp.

这个返回页面是把最开始页面的表单填写的数据,拿过来的(中间显示表单数据被后台的action类取到,然后在action类中,再将数据存入到某一个域中,最后到成功跳转的页面取出这个域中的数据,同时展现出来。

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




Insert title here


这里是成功跳转后的网页:
用户名: ${username} 密码: ${password }

5.最后是启动项目,然后访问页面:http://localhost:8080/SSHProject/login.jsp

struts2中的ActionSupport类_第1张图片

struts2中的ActionSupport类_第2张图片

struts2中的ActionSupport类_第3张图片

最后是把表单上写的数据,通过struts这个框架,传递到另一个页面了

你可能感兴趣的:(java_web,ssh,SSH常见问题)