Bean configuration tag

From Resin 3.0

Revision as of 13:23, 15 November 2005 by Ferg (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

See Also

Inversion of Control

tags

tag 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

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>
Personal tools