Static Parameter
In
this section, we will develop a simple application to access the static
parameters. We will use a JavaBean to set and get the static parameters. Each static parameter
has a value.
Description
:
Develop
a
JavaBean with three properties (Static Parameters) of string type (
parameter1,parameter2, parameter3 ). Define three JavaBean properties and add
their corresponding values in the
action mapping (in
the application's struts.xml
).
Set
the
name(s) and value(s) as
shown below:
code snippet from struts.xml
<action name="StaticParameter" class="net.roseindia.StaticParameter"> <param name="pramater1">Value 1</param> <param name="pramater2">Value 2</param> <param name="pramater3">Value 3</param> <result>/pages/staticparameter/showparamerts.jsp</result> </action> |
Create a simple JavaBean StaticParameter.java in the "struts2tutorial\WEB-INF\src\java\net\roseindia" directory. Here the "StaticParameter" class extends the ActionSupport class. It sets and gets the three static parameters by using the setParameter1(), setParameter2(), setParameter3() and getParameter1(), getParameter2(), getParameter3() methods.
Now compile the JavaBean (StaticParameter.java) through the 'ant' command.
StaticParameter.java
package net.roseindia;
|
Create a jsp page (showparameters.jsp) to view the static parameters.
showparameters.jsp
<%@ taglib prefix="s" uri="/struts-tags" %>
|
Open web browser and give request as http://localhost:8080/struts2tutorial/roseindia/StaticParameter.action. It displays a table
that contains three static parameters in key-value format.
Output of this application: