美文网首页struts2
struts2 向值栈中存放对象和List集合(第三种方式)

struts2 向值栈中存放对象和List集合(第三种方式)

作者: DouDouZH | 来源:发表于2018-05-16 20:42 被阅读0次

一、向值栈中放对象

1、实现步骤
  • 定义对象变量
  • 生成变量的get方法
  • 在执行的方法里头向对象设置值
2、代码

User.java

package work.zhangdoudou.Bean;

public class User {
    private String username;
    private String password;
    private String type;
    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 getType() {
        return type;
    }
    public void setType(String type) {
        this.type = type;
    }
        
}

ValuesStackAction3.java

package work.zhangdoudou.Action;

import com.opensymphony.xwork2.ActionSupport;
import work.zhangdoudou.Bean.User;

public class ValuesStackAction3 extends ActionSupport{
    //1定义对象变量
    private User user;
    //2生成个get方法
    public User getUser() {
        return user;
    }
    public void setUser(User user) {
        this.user = user;
    }
    @Override
    public String execute() throws Exception {
        //向值栈的user放对象
        user= new User();
        user.setUsername("zhangsan");
        user.setPassword("123");
        user.setType("student");
        
        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>
    <constant name="struts.enable.DynamicMethodInvocation" value="false" />
    <constant name="struts.devMode" value="true" />
    <package name="default" namespace="/" extends="struts-default">
        <action name="userAction3" class="work.zhangdoudou.Action.ValuesStackAction3" method="execute">
            <result name="success">/ValuesStack.jsp</result>
        </action>
    </package>
</struts>

web.xml

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>struts2.217</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  
  <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>
3、运行结果
image.png

二、向值栈中存放List集合

1、步骤
  • 定义list集合的变量
  • 生成get方法
  • 在执行方法向list设置数据
2、代码

User.java

package work.zhangdoudou.Bean;

public class User {
    private String username;
    private String password;
    private String type;
    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 getType() {
        return type;
    }
    public void setType(String type) {
        this.type = type;
    }
        
}

ValuesStackAction4.java

package work.zhangdoudou.Action;

import java.util.ArrayList;
import java.util.List;

import com.opensymphony.xwork2.ActionSupport;
import work.zhangdoudou.Bean.User;

public class ValuesStackAction4 extends ActionSupport{
    //1定义list变量
    private List<User> list;
    //2生成个get方法

    public List<User> getList() {
        return list;
    }

    public void setList(List<User> list) {
        this.list = list;
    }
    @Override
    public String execute() throws Exception {
        //向list存放数据
        User user1=new User();
        list=new ArrayList<User>();
        user1.setUsername("zhangsan");
        user1.setPassword("123");
        user1.setType("student");
        User user2=new User();
        user2.setUsername("lisi");
        user2.setPassword("456");
        user2.setType("student1");
        list.add(user1);
        list.add(user2);
        
        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>
    <constant name="struts.enable.DynamicMethodInvocation" value="false" />
    <constant name="struts.devMode" value="true" />
    <package name="default" namespace="/" extends="struts-default">
        <action name="userAction4" class="work.zhangdoudou.Action.ValuesStackAction4" method="execute">
            <result name="success">/ValuesStack.jsp</result>
        </action>
        
    </package>
</struts>

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>struts2.217</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  
  <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>
3、运行结果
image.png

相关文章

  • struts2 向值栈中存放对象和List集合(第三种方式)

    一、向值栈中放对象 1、实现步骤 定义对象变量 生成变量的get方法 在执行的方法里头向对象设置值 2、代码 Us...

  • Java集合--对比的视角

    单线程类集合 List 继承自Conllection元素以线性方式存储,集合中可以存放重复对象。 ArrayLis...

  • java开发map、list区别

    一、是什么 List(列表) 特征是其元素以线性方式存储,集合中可以存放重复对象。 Map(映射) 是一种把键对象...

  • iOS内存管理详解

    从上图可以看到,栈里面存放的是值类型,堆里面存放的是对象类型。对象的引用计数是在堆内存中操作的。下面我们讲讲堆和栈...

  • 值栈中放数据

    向值栈放数据多种方式 1、第一种,获取值栈对象,调用值栈对象里面的set方法2、第二种,调用值栈对象里面的push...

  • (九)类集合框架

    什么是集合? (set)集合中的对象不按特定的方式排序,并且没有重复对象。 什么是列表? (list)集合中的对象...

  • 琐碎

    数据存储 栈:存放基本类型的数据和对象的引用,但对象本身不存放在栈中,而是存放在堆中堆:存放用new产生的数据 静...

  • GeekBand oc课程笔记

    oc课程笔记 堆和栈的区别 指针是存放在“栈”上,而对象时存放在“堆”上的,访问对象职能通过指针的方式来访问。 栈...

  • js 对象深拷贝与浅拷贝

    js基本数据类型与对象指针(引用地址)存放在栈内存,对象实际存放在堆内存。变量标志符和值(基本数据和指针)保存在栈...

  • 往值栈中放对象、List集合

    向值栈放对象的步骤如下: 1、定义一个对象变量,比如User; 2、生成变量的get方法; 3、在执行的方法里面面...

网友评论

    本文标题:struts2 向值栈中存放对象和List集合(第三种方式)

    本文链接:https://www.haomeiwen.com/subject/fyymdftx.html