Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
Using scriptlet to Initialize JavaBean
How do I use a scriptlet to initialize a newly instantiated bean?
✍: FYICENTER.com
A jsp:useBean action may optionally have a body. If the body is specified, its contents will be automatically invoked when the specified bean is instantiated. Typically, the body will contain scriptlets or jsp:setProperty tags to initialize the newly instantiated bean, although you are not restricted to using those alone.
The following example shows the "today" property of the Foo bean initialized to the current date when it is instantiated. Note that here, we make use of a JSP expression within the jsp:setProperty action.
<jsp:useBean id="foo" class="com.Bar.Foo" > <jsp:setProperty name="foo" property="today" value="<%=java.text.DateFormat.getDateInstance().format (new java.util.Date())%>"/> <%-- scriptlets calling bean setter methods go here --%> </jsp:useBean >
2007-04-03, 7948👍, 0💬
Popular Posts:
How can method defined in multiple base classes with same name be invoked from derived class simulta...
How To Create an Add-to-My-Yahoo Button on Your Website? - RSS FAQs - Adding Your Feeds to RSS News ...
What is the output of printf("%d")? 1. When we write printf("%d",x); this means compiler will print ...
What will be printed as the result of the operation below: main() { char s1[]="Cisco"; char s2[]="sy...
What will be printed as the result of the operation below: main() { int a=0; if (a==0) printf("Cisco...