例如,我有一个URL:/test.action?a = 1& b = 2 现在我想在jsp页面中使用只从URL中获取“a = 1& b = 2”,该怎么做?
答案 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