技术干货

struts2请求参数的接受

2017-08-08  本文已影响0人  rainumdo

struts2提供了两种请求参数的接受方式
文章使用的配置文件

<struts>
    <constant name="struts.i18n.encoding" value="UTF-8" />
    <package name="Action" namespace="/" extends="struts-default">
        <action name="execute" class="Action.testAction">
            <result>/execute.jsp</result>
        </action>
    </package>
</struts>
public class testAction extends ActionSupport{
    private int id;
    
    public String execute() throws Exception {
        return "success";
    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }
}

请求路径:http://localhost:8080/testStruts/execute?person.name=1

public class testAction extends ActionSupport{
    private Person person;
    
    public String execute() throws Exception {
        return "success";
    }

    public Person getPerson() {
        return person;
    }

    public void setPerson(Person person) {
        this.person = person;
    }
}

使用反射技术,先去调用默认构造函数,然后调用相应的getter()和setter()方法,所以一定要有一个默认的构造函数

public class Person {
    private String name;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
    
    public Person() {
    }
}
上一篇下一篇

猜你喜欢

热点阅读