Friday, March 13, 2009

How do I use a scriptlet to initialize a newly instantiated bean (JSP)

Question :How do I use a scriptlet to initialize a newly instantiated bean? (JSP)

Answer :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.





<%-- scriptlets calling bean setter methods go here --%>





No comments: