Enriquecer una URL con la propiedad de un ActionForm Struts
Artículo por Club Developers · 30 octubre 2006
2280 vistas
Si el/los valor(es) a pasar están en un bean conocido, podemos usar los atributos paramId y paramName. El primero corresponde al nombre del parámetro a pasar y el segundo al nombre del bean que contiene el valor.
Si este bean sólo contiene la propiedad, usaremos el atributo paramProperty:
html4strict
<html:link href=action.do paramId="prop" paramName="myBean"/>
Si este bean sólo contiene la propiedad, usaremos el atributo paramProperty:
html4strict
<html:link href="action.do" paramId="myProperty" paramName="myBean" paramProperty="myProperty"/>