在Spring中提供了两个代理工厂Bean来代理EJB的访问:

        - LocalStatelessSessionProxyFactoryBean - 用来访问本地EJBEJB和它的客户端在同一个容器中)。

        - SimpleRemoteStatelessSessionProxyFactoryBean - 用来访问远程EJBEJB和它的客户端在独立的容器中)。

        例如:

           <bean id="businessComponent" class="org.springframework.ejb.access.SimpleRemoteStatelessSessionProxyFactoryBean" lazy-init=”true”>
                
<property name="jndiName">
                      <value>ejb/location.business.comp</value>
                </property>
               
<property name="businessInterface">
                      <value>com.test.LocationBusinessComponent</value>
                </property>
           
</bean>

      
        SimpleRemoteStatelessSessionProxyFactoryBean是个代理工厂Bean类,该Bean通过jndiName属性就可以查找到这个EJBhome接口。在容器启动的时 候,SimpleRemoteStatelessSessionProxyFactoryBean通过该JNDI来查找EJB 的远程Home接口,接着它会把这个接口缓存起来,这样每次在businessComponent上的方法被调用时,代理就会调用远程接口上的create()方法来取得这个EJB的引用,而不需要再进行同样的JNDI查找了。businessInterface属性等同与在其他远程服务代理工厂Bean中使用的serviceInterface,它表示这个EJB服务依附在LocationBusinessComponent接口上。

    关于这个声明,一件需要注意的事情就是<Bean>元素的lazy-init属性。在《spring in action》中提到:当任何一个EJB代理工厂BeanApplicationContext中使用时,这一 点是相当重要的。这是因为在Spring配置文件被装载进来的时候,ApplicationContext风格的Bean工厂预先实例化了单实例的 Bean。这通常是一件好事,但它可能会导致EJB代理工厂BeanEJB被绑定到名字服务之前,试图查找EJBhome接口。把lazy-init 设置为true,可确保这个EJB在装载时不会试图查找home接口,直到它首次被使用为止,这将会留有足够的时间来把EJB绑定到名称服务上。

        经过尝试,lazy-init属性并不奏效,我的代码场景是通过一个initservlet去载入一个引用了businessComponentbean,设置了lazy-init属性之后,spring容器依然会在载入时初始化businessComponent。通过查阅springapi后发现,最好的解决办法是设置lookupHomeOnStartup属性,将该属性为falsespring将会在第一次访问ejb时才去获取home接口。测试之后,该配置起作用了,更改后的配置如下:

          <bean id="businessComponent" class="org.springframework.ejb.access.SimpleRemoteStatelessSessionProxyFactoryBean">
                 <property name="jndiName">
                         <value>ejb/location.business.comp</value>
                 </property>
                 <property name="businessInterface">
                         <value> com.test.LocationBusinessComponent</value>
                 </property>
                 <property name="lookupHomeOnStartup">
                         <value>false</value>
                
</property>
          </bean>

    更详细的信息可参考关于SimpleRemoteStatelessSessionProxyFactoryBean apihttp://static.springsource.org/spring/docs/1.2.x/api/org/springframework/ejb/access/SimpleRemoteStatelessSessionProxyFactoryBean.html