DEVFYI - Developer Resource - FYI

How do I use a scriptlet to initialize a newly instantiated bean?

JSP Interview Questions and Answers


(Continued from previous question...)

45. How do I use a scriptlet to initialize a newly instantiated bean?

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.
value=""/ >

(Continued on next question...)

Other Interview Questions