dinesh Archive
The date tag allows to format a Date in a quick and easy way. User can specify a custom format (eg. “dd/MM/yyyy hh:mm”), can generate easy readable notations (like “in 2 hours, 14 minutes”), or …
In this section, we are going to describe the Bean Tag. The Bean tag is a generic tag that is used to instantiates a class that confirms to the JavaBeans specification. This tag has a …
In this tutorial, you will see the use of struts2 set tag. The set tag is a generic (Data) tag that is used to assign a value of property to another name in a specified …
In this tutorial, We will discuss about the param tag in struts 2. This tag can be used to parameterize other tags. The parameters can be added with or without a name as key. when …
In this section, we are going to describe the include tag. The include tag is a generic tag that is used to include a servlet’s output (result of servlet or a JSP page) to the …
In this tutorial, we are going to describe the action tag. The action tag is a generic tag that is used to call actions directly from a JSP page by specifying the action name and …
Struts 2 “a” tag is used to render a HTML “<a>” tag. The best practice is always use “<s:url>” tag to create the URL and embed it into the “a” tag. Create Action class: DataTagAction.java …