<s:push>:
The <s:push> tag is used to push a value on the top of the stack to access it easily.
Syntax:
<s:push value="beanReference"> <s:propery value="property1" /> <s:propery value="property2" /> </s:push> |
Note: We can see in the previous s:property tag example that we have to use bean reference to access the properties but in case push tag we push bean reference at the top of the stack and access the property directly without using bean reference.
Example:
test.jsp
<%@ taglib uri="/struts-tags" prefix="s"%> <html> <head> <title>Struts 2 s:push data tag example</title> </head> <body> <h3>This is a s:push data tag example.</h3> <s:bean name="com.w3schools.action.Test" var="test"> <s:param name="website">www.w3schools.com</s:param> </s:bean> <s:push value="#test" > Website : <s:property value="website" /> </s:push> </body> </html> |
web.xml
<?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <filter> <filter-name>struts2</filter-name> <filter-class> org.apache.struts2.dispatcher.ng. filter.StrutsPrepareAndExecuteFilter </filter-class> </filter> <filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <welcome-file-list> <welcome-file>test.jsp</welcome-file> </welcome-file-list> </web-app> |
Test.java
/** * This class is used as an action class. * @author w3schools */ public class Test { private String website; public String getWebsite() { return website; } public void setWebsite(String website) { this.website = website; } } |
Output:
Download this example.
Next Topic: Struts 2 set data tag with example.
Previous Topic: Struts 2 property data tag with example.