一、建立一个名叫jsp_struts2的项目
二、导入jar包
如上图:jar包导入在WebContent/WEB-INF/lib下
三、建立一个LoginAction类
LoginAction类的set方法取得登录界面的登录名和登录密码
execute()方法是程序的入口
public class LoginAction { 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() { System.out.println(username+" "+password); if ("123456".equals(username) && "123456".equals(password)) { return "SUCCESS"; } return "INPUT"; }}
四、建立界面(登录失败返回登录界面)
1、建立登录login.jsp界面
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>登录界面
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>登录成功 登录成功,欢迎你,
五、配置struts.xml
/success.jsp /login.jsp