如何将Struts2属性值作为变量放入JSP中的查询字符串?

时间:2012-04-12 13:34:49

标签: jsp struts2 query-string

问题是: 我可以使用:

从动作类中获取属性值
<s:property value="%{variable}" /></TD>

现在我想将此变量放入查询字符串中,如:

<a href="http://www.sample.com/sample.jsp?name=${variable}">Visit W3fools.com</a>, 

但是这种格式适用于plian JSP变量,我应该使用哪种格式?

2 个答案:

答案 0 :(得分:1)

  <s:url var="sample" value='http://www.sample.com/sample.jsp'>
      <s:param name="name"><s:property value="%{variable}"/></s:param>
  </s:url>

  <s:a href="%{sample}">Visit W3fools.com</s:a>

答案 1 :(得分:0)

我想说使用${variable}

的链接

因为<s:property value="%{variable}" />需要更多时间来执行。

查看他们的difference