如何从struts2中的url获取参数part使用<s:url>标记?</s:url>

时间:2011-11-25 09:14:56

标签: url struts2 jsp-tags

例如,我有一个URL:/test.action?a = 1&amp; b = 2 现在我想在jsp页面中使用只从URL中获取“a = 1&amp; b = 2”,该怎么做?

1 个答案:

答案 0 :(得分:0)

行动守则

public class MyAction extends ActionSupport {
    private String a;
     private String a;

    public String execute() throws Exception {
        // do something here
        return SUCCESS;
    }

    public String getA() {
        return a;
    }

    public void setA(final String a) {
        this.a= a;
    }

 public String getB() {
        return b;
    }

    public void setB(final String b) {
        this.a= a;
    }
}

使用Struts标签:

<s:property value="a"/>
<s:property value="b"/>

我还不确定你的要求究竟是什么,因为你的问题不是很清楚

Just a side note <s:url> This tag is used to create a URL