Action处理业务请求(一)

1、概述

100356_RpGB_2320342.png

100656_B5aX_2320342.png

 2、Action的作用

101037_BgG2_2320342.jpeg

101225_0FiF_2320342.png

 3、第一种方式(设置私有属性)

log.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
 <form action="login" method="post">
  用户名:<input type="text" name="userName"/>
  密码:<input type="password" name="password"/>
  <input type="submit" value="提交"/>&nbsp;&nbsp;
  <input type="reset" value="重置"/>
 </form>
</body>
</html>

loginSuccess.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
登陆成功,欢迎你:<s:property value="userName"/>
</body>
</html>

LoginAction类:

package com.ljb.web.action;
import com.opensymphony.xwork2.ActionSupport;
/**
 * 第一种传递参数方法(设置私有属性,设置set与get方法)
 * @author Administrator
 *
 */
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;
 }
 
 @Override
 public String execute() throws Exception {
  // TODO Auto-generated method stub
  return SUCCESS;
 }
}

struts.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
 "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
 "http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
        <!-- Add packages here -->
    <constant name="struts.devMode" value="true" />
 <package name="default" namespace="/" extends="struts-default">
       <action name="login" class="com.ljb.web.action.LoginAction">
            <result>
                /loginSuccess.jsp
            </result>
        </action>
    </package>
</struts>

105746_oF2m_2320342.png

105844_zmrS_2320342.png

 4、乱码问题

login.jsp

<%@ page language="java" contentType="text/html; charset=gbk"
    pageEncoding="gbk"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gbk">
<title>Insert title here</title>
</head>
<body>
 <form action="login" method="post">
  用户名:<input type="text" name="userName"/>
  密码:<input type="password" name="password"/>
  <input type="submit" value="提交"/>&nbsp;&nbsp;
  <input type="reset" value="重置"/>
 </form>
</body>
</html>

loginSuccess.jsp

<%@ page language="java" contentType="text/html; charset=gbk"
    pageEncoding="gbk"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gbk">
<title>Insert title here</title>
</head>
<body>
登陆成功,欢迎你:<s:property value="userName"/>
</body>
</html>

110350_ZcsV_2320342.png

110434_D4sB_2320342.png

原因:

110752_Umqf_2320342.png

 

解决方法:

111017_riUu_2320342.png

111202_P3wy_2320342.png

 小结:

115047_0LAB_2320342.png

115612_mODz_2320342.png

 5、第二种方式(JavaBean)

创建JavaBean:

package com.ljb.entity;
public class User {
 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;
 }
}

LoginAction2类:

package com.ljb.web.action;
import com.ljb.entity.User;
import com.opensymphony.xwork2.ActionSupport;
public class LoginAction2 extends ActionSupport {
 private User user;
 
 public User getUser() {
  return user;
 }
 public void setUser(User user) {
  this.user = user;
 }
 @Override
 public String execute() throws Exception {
  // TODO Auto-generated method stub
  return SUCCESS;
 }
}

login2.jsp:

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
 <form action="login2" method="post">
  用户名:<input type="text" name="user.userName"/>
  密码:<input type="password" name="user.password"/>
  <input type="submit" value="提交"/>&nbsp;&nbsp;
  <input type="reset" value="重置"/>
 </form>
</body>
</html>

loginSuccess2.jsp:

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
登陆成功,欢迎你:<s:property value="user.userName"/>
</body>
</html>

struts.xml:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
 "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
 "http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
        <!-- Add packages here -->
    <constant name="struts.devMode" value="true" />
    <package name="default" namespace="/" extends="struts-default">
       <action name="login2" class="com.ljb.web.action.LoginAction2">
            <result>
                /loginSuccess2.jsp
            </result>
        </action>
    </package>
</struts>

 操作小技巧(xml中添加提示功能):

142204_bHWy_2320342.png

142410_KEb3_2320342.png

 小结:

143153_lT4K_2320342.jpeg

143226_2Z2n_2320342.png

 6、第三种方式(ModelDriven)

143607_KiYF_2320342.png

 LoginAction3.jsp:

package com.ljb.web.action;
import com.ljb.entity.User;
import com.opensymphony.xwork2.ModelDriven;
public class LoginAction3 implements ModelDriven {
 private User user = new User();
 
 @Override
 public User getModel() {
  // TODO Auto-generated method stub
  return user;
 }
 
 public String execute() {
  return "success";
 }
}

注:其余页面参数跟第一种方式相同

 145216_7k6c_2320342.png

7、小结

145616_coi7_2320342.png

 

 

 

 

转载于:https://my.oschina.net/u/2320342/blog/413600

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值