Bean configuration tag
From CauchoWiki
[edit] See Also
[edit] directives
| directive | description |
| init | Block of Inversion of Control setters |
| jndi-name | JNDI name to store the bean |
| local-transaction-optimization | For transactional beans, use the local transaction optimization when possible |
| mbean-interface | Java interface exposing the bean's management interface |
| mbean-listener | Registers the bean to listen for JMX events |
| mbean-name | JMX name to store the bean |
| type | The Java class of the bean |
| var | EL variable to store the bean |
[edit] example
...
<bean var="movie"
type="com.foo.MyMovie">
<init>
<name>Fellowship of the Ring</name>
<director>Peter Jackson</director>
</init>
</bean>
...
<servlet servlet-name="movie-display"
servlet-class="com.foo.MovieServlet">
<init>
<movie>${movie}</movie>
</init>
</servlet>
