Home struts generators
sometime,IDE is the memory eater.sometime,simple generator web based is a good choice!

generate Struts2 tag url code snippet

This tag is used to create a URL. You can use the <param> tag inside the body to provide additional request parameters. If the value of a param is an Array or an Iterable all the values will be added to the URL.

url
action
anchor
encode
escapeAmp
forceAddSchemeHostAndPort
includeContext
includeParams
method
namespace
portletMode
portletUrlType
scheme
value
var
windowState
Examples
<-- Example 1 -->
<s:url value="editGadget.action">
<s:param name="id" value="%{selected}" />
</s:url>

<-- Example 2 -->
<s:url action="editGadget">
<s:param name="id" value="%{selected}" />
</s:url>

<-- Example 3-->
<s:url includeParams="get">
<s:param name="id" value="%{'22'}" />
</s:url>

references http://struts.apache.org/2.x/docs/url.html