struts2复习记录__简单登录

本文介绍了使用Struts2框架实现简单登录系统的步骤。包括配置struts.xml文件、设计login.jsp页面以及编写LoginAction.java核心处理类。通过这些组件实现了基本的用户验证流程。
摘要由CSDN通过智能技术生成
今日复习,发现好多知识点都已经很是模糊,决定以后认真复习,并记录之。
---struts2登录---

1、strust.xml内容:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd">
<struts>
<package name="defualt" namespace="/" extends="struts-default">
<action name="login" class="com.he.action.LoginAction">
<result name="success">success.jsp</result>
<result name="input">login.jsp</result>
</action>
</package>
</struts>

2、login.jsp内容:
<body>
<form action="login.action" method="post">
<table border="1" cellpadding="0" cellspacing="0" bordercolor="red">
<tr>
<td>
用户名
</td>
<td>
<input type="text" name="username" />
</td>
</tr>
<tr>
<td>
密  码
</td>
<td>
<input type="password" name="password" />
</td>
</tr>
<tr>
<td colspan="2" align="right">
<input type="submit" value="login" />
</td>
</tr>
</table>
</form>
</body>

3、LoginAction.java内容:
package com.he.action;

import com.opensymphony.xwork2.Action;
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 execute() throws Exception
{
if(!username.equals("")&&!password.equals("") )
{
ActionContext.getContext().getSession().put("username", username);
return Action.SUCCESS ;
}else{
return Action.INPUT ;
}

}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值