Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
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, 6533👍, 0💬
Popular Posts:
What is page thrashing? Some operating systems (such as UNIX or Windows in enhanced mode) use virtua...
What are the types of variables x, y, y and u defined in the following code? #define Atype int* type...
How do we get the current culture of the environment in windows and ASP.NET? “CultureInfo.CurrentCul. ..
How Do I Run JUnit Tests from Command Window? To run JUnit tests from a command window, you need to ...
What is CodeDom? “CodeDom” is an object model which represents actually a source code. It is designe...