此内容没有您所选择的语言版本。
29.3. Annotations for component lifecycle methods
These annotations allow a component to react to its own lifecycle events. They occur on methods of the component. Only one of these annotations may be used in any one component class.
-
@Create
@Create
@Create
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Specifies that the method should be called when an instance of the component is instantiated by Seam. Create methods are only supported for JavaBeans and stateful session beans.-
@Destroy
@Destroy
@Destroy
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Specifies that the method should be called when the context ends and its context variables are destroyed. Destroy methods are only supported for JavaBeans and stateful session beans.Destroy methods should be used only for cleanup. Seam catches, logs and swallows any exception that propagates out of a destroy method.-
@Observer
@Observer("somethingChanged")
@Observer("somethingChanged")
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Specifies that the method should be called when a component-driven event of the specified type occurs.@Observer(value="somethingChanged",create=false)
@Observer(value="somethingChanged",create=false)
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Specifies that the method should be called when an event of the specified type occurs, but that an instance should not be created if it does not already exist. If an instance does not exist and create is set tofalse
, the event will not be observed. The default value istrue
.