DescriptionInstantiates a class that conforms to the JavaBeans specification. This tag has a body which can contain a number of Param elements to set any mutator methods on that class. If the id attribute is set on the BeanTag, it will place the instantiated bean into the stack's Context. Parameters
Examples<-- in freemarker form --> [ww.bean name="com.opensymphony.webwork.example.counter.SimpleCounter" id="counter"] [ww:param name="foo" value="BAR"/] The value of foo is : [ww:property value="foo"/], when inside the bean tag.<br /> [/ww:bean] <-- in jsp form --> <ww:bean name="com.opensymphony.webwork.example.counter.SimpleCounter" id="counter"> <ww:param name="foo" value="BAR" /> The value of foot is : <ww:property value="foo"/>, when inside the bean tag <br /> </ww:bean> This example instantiates a bean called SimpleCounter and sets the foo property (setFoo('BAR')). The SimpleCounter object is then pushed onto the Valuestack, which means that we can called its accessor methods (getFoo()) with the Property tag and get their values. In the above example, the id has been set to a value of counter. This means that the SimpleCounter class will be placed into the stack's context. You can access the SimpleCounter class using WW's tag: <-- jsp form --> <ww:property value="#counter" /> In the property tag example, the # tells Ognl to search the context for the SimpleCounter class which has an id(key) of counter |