Struts2系列教程(三)

转载请注明出处:http://blog.csdn.net/github_39430101/article/details/75209258
上一篇讲了Struts2框架下HelloWorld的实现,这篇我们将更深入地学习Struts2框架如何使用。首先思考我们在Struts2框架下,是如何将表单数据传递给业务控制器Action呢?前面章节的web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" 
    xmlns="http://java.sun.com/xml/ns/javaee" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
    http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
    <!-- 前端控制器 -->
    <filter>
            <filter-name>struts2</filter-name>
            <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
    </filter>
    <filter-mapping>
            <filter-name>struts2</filter-name>
            <url-pattern>/*</url-pattern>
    </filter-mapping>
 </web-app>

struts.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.1.7//EN"
    "http://struts.apache.org/dtds/struts-2.1.7.dtd">
    <struts>
        <package name="day01" namespace="/demo" extends="struts-default">
            <action name="hello" class="day01.HelloAction" method="sayHello">
            <result name="success">/hello.jsp</result>
            </action>
        </package>
    </struts>
表单

Struts2中,表单向控制器传递参数的方式有两种。它们分别是基本属性注入域模型注入

  • 基本属性注入:是将表单的数据项分别传入给控制器中的一些基本类型
  • 域模型注入:是将表单的数据一起传入给控制器的的一个实体对象

下面我们将分别实现这两种方式。

基本属性注入

步骤1:在前面咱们所建立的项目中新增index.jsp

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>jsp</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
</head>
<body>
    This is my JSP page. <br><br>
<form action="/struts/demo/hello.action" method="post">
    <!--演示基本属性注入 -->
    姓名:<input type="text" name="username"/><br/><br/>

    <input type="submit" value="提交"/>
</form>
</body>
</html>

步骤2:还是之前的HelloAction文件,我们做下修改,增加属性用于接收表单传入的姓名参数,该属性的名称要求与文本框的name值相同(username),并且该属性需要具备set方法。

package day01;

public class HelloAction {
    private String username;

    public void setUsername(String username) {
        System.out.println("注入参数username");
        this.username = username;
    }
    public String sayHello() {
        System.out.println("姓名:"+username);
        return "success";
        }
}

项目目录
这里写图片描述
步骤3:测试,启动tomcat,输入http://localhost:8080/struts
这里写图片描述
输入hello world ,点击提交
这里写图片描述
控制器已成功接受到表单的值。

域模型注入

步骤1:在咱们之前的的index.jsp中加入password属性

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>jsp</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
</head>
<body>
    This is my JSP page. <br><br>
<form action="/struts/demo/hello.action" method="post">
    <!--演示基本属性注入 -->
    姓名:<input type="text" name="username"/><br/><br/>
    密码:<input type="text" name="password"/><br>
    <input type="submit" value="提交"/>
</form>
</body>
</html>

步骤2:创建实体类entity User,用于封装表单中的数据用户名和密码,User中要包含这两个属性,并提供set/get方法。

public class User {
    private String userName;// 用户名
    private String password;// 密码
    public String getPassword() {
        return password;
    }
    public String getUserName() {
        return userName;
    }
    public void setUserName(String userName) {
        this.userName = userName;
    }
    public void setPassword(String password) {
        this.password = password;
    }
}

步骤3:修改HelloAction

package day01;

import com.entity.User;

public class HelloAction {
   private User user;
   public void setUser(User user) {
       System.out.println("注入对象user");
       this.user = user;
   }
   public User getUser() {
       return user;
   }
   public String sayHello() {
       System.out.println("用户名"+user.getUsername());
       System.out.println("密码"+user.getPassword());
       return "success";
   }
}

步骤4:在index.jsp中,修改表单里新增的2个文本框的name属性值。对于域模型注入的方式,文本框name属性值应该是具有“对象名.属性名”格式的表达式。其中对象名指的是Action中的实体类型属性名,属性名指的是实体类型中的属性名

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>jsp</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
</head>
<body>
    This is my JSP page. <br><br>
<form action="/struts/demo/hello.action" method="post">
    <!--演示基本属性注入 -->
    姓名:<input type="text" name="user.username"/><br/><br/>
    密码:<input type="text" name="user.password"/><br/>
    <input type="submit" value="提交"/>
</form>
</body>
</html>

步骤5:测试,启动汤姆猫,输入http://localhost:8080/struts
这里写图片描述
输入姓名和密码点击提交
这里写图片描述

EL表达式

我们已经学会了Struts2表单 (从前到后)的两种接收参数的方法,下面我们将简单演示一下使用EL(从后到前)表达式接受控制器中的值。
在hello.jsp中加入EL表达式接收控制器的值,注意控制器中属性要有get方法。

<%@page pageEncoding="utf-8" isELIgnored="false"%>
<html>
<head>
</head>
<body>
    <h1>用户名:${user.username }</h1>
    <h1>密码:${user.password }</h1>
</body>
</html>

测试:在浏览器中输入http://localhost:8080/struts
这里写图片描述
提交跳转到hello.jsp
这里写图片描述

一、准备工作及实例 3 1.解压struts-2.1.6-all.zip 3 2.六个基本包 3 3.初识struts2配置文件 4 (1).web.xml文件 4 (2).struts.xml文件 4 (3).struts.properties(参default.properties) 4 (4)struts-default.xml 4 (5)其它配置文件 4 4.让MyEclipse提示xml信息 4 5.如何使用alt+/提示 4 6.实例 4 7.开启struts2自带的开发模式常量 6 8.vo传参模式 7 9.ModerDriven传参模式(不建议采用) 7 10.为什么要使用struts2代替struts1.x 7 二、struts.xml配置及例程 7 1.配置文件的优先级 7 2.配置形式 8 3.package配置相关 8 4.分工合作include:指定多个配置文件 10 5.tomcat认证访问 10 6.初识拦截器 11 7.Action中的method属性 12 8.使用ForwardAction实现页面屏蔽。 13 8.使用default-Action配置统一访问 14 小结Action 14 9.使用通配符 14 10.使用0配置:ZERO Annotation 15 11.Result配置详解 15 探讨type类型: 16 Type类型值 16 作用说明 16 对应类 16 chain 16 用来处理Action链 16 com.opensymphony.xwork2.ActionChainResult 16 dispatcher 16 用来转向页面,通常处理JSP 16 org.apache.struts2.dispatcher.ServletDispatcherResult 16 redirect 16 重定向到一个URL 16 org.apache.struts2.dispatcher.ServletRedirectResult 16 redirectAction 16 重定向到一个Action 16 org.apache.struts2.dispatcher.ServletActionRedirectResult 16 plainText 16 显示源文件内容,如文件源码 16 org.apache.struts2.dispatcher.PlainTextResult 16 freemarker 16 处理FreeMarker模板 16 org.apache.struts2.views.freemarker.FreemarkerResult 16 httpheader 16 控制特殊http行为的结果类型 16 org.apache.struts2.dispatcher.HttpHeaderResult 16 stream 16 向浏览器发送InputSream对象,通常用来处理文件下载,还可用于返回AJAX数据。 16 org.apache.struts2.dispatcher.StreamResult 16 velocity 16 处理Velocity模板 16 org.apache.struts2.dispatcher.VelocityResult 16 xslt 16 处理XML/XLST模板 16 org.apache.struts2.views.xslt.XSLTResult 16 全局result: 17 动态Result:了解 18 12.异常处理 18 、在Action获取Scope对象 19 方式一、与Servlet解耦合的非IOC方式 20 方式二、与Servlet解耦合的IOC方式 21 方式、与Servlet耦合的非IOC方式 21 方式四、与Servlet耦合的IOC方式 22 四、OGNL与ValueStack(VS) 22 1.值栈入门 22 2.OGNL入门 24 3.普通方法访问 24 4.静态方法访问 24 5.默认类Math的访问 24 6.调用普通类的构造方法 25 7.集合对象初步 25 8.集合对象进阶 25 9.N语法top语法 26 10.获取Stack Context中的信息 26 11.总结$ # %的区别 27 12.总结OGNL[重点] 27 五、拦截器 28 1.概述strust2中的拦截器 28 2.自定义拦截器 28 方式一,实现Interceptor接口。 28 方式二、继承AbstractInterceptor抽象类 29 方式、继承MethodFilterInteceptor类 30 3.使用来MethodFilterInterceptor灵活拦截 32 4.使用默认的execAndWait拦截器 33 5.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值