⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 loginaction.java.svn-base

📁 struts2结合ext参数传递
💻 SVN-BASE
字号:
package com.ufida.struts2.sample;

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

public class LoginAction 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  login() throws Exception{
//		if (getUsername().equals("scott") && getPassword().equals("tiger")) {
//					
//					ActionContext.getContext().getSession().put("user" , getUsername());
//					
//					return SUCCESS;
//				} else
//					return ERROR ;
//	}
//
//	@Override
//	public String execute() throws Exception {
//		// TODO Auto-generated method stub
//		return null;
//	}
	
	public String execute() throws Exception {
		if (getUsername().equals("scott") && getPassword().equals("tiger")) {
			
			ActionContext.getContext().getSession().put("user" , getUsername());
			
			return SUCCESS;
		} else
			return ERROR ;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -