loginform.java

来自「spring struts hibernate 集成开发的web应用」· Java 代码 · 共 50 行

JAVA
50
字号
package com.sc.struts.form.login;

import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionMessage;
import javax.servlet.http.*;

public class LoginForm extends ActionForm {
	
	private String username;

	private String password;

	public String getPassword() {
		return password;
	}

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

	public String getUsername() {
		return username;
	}

	public void setUsername(String username) {
		this.username = username;
	}
	
	public void reset(ActionMapping mapping,HttpServletRequest request){
		this.username = null;
		this.password = null;
	}
	
//	public ActionErrors validate(ActionMapping mapping , HttpServletRequest request){
//		ActionErrors errors = new ActionErrors();
//		
//		if(username ==null ||username.length() < 1){
//			errors.add("username",new ActionMessage("no.enter.useraname"));
//		}
//		
//		if (password == null || password.length() < 1){
//			errors.add("password",new ActionMessage("no.enter.password"));
//		}
//		return errors;
//	}

}

⌨️ 快捷键说明

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