1. EJB继承AbstractStatelessSessionBean 方式:
http://forum.springframework.org/showthread.php?t=18988 客户端调用。
2.LocalStatelessSessionProxyFactoryBean 调用 EJB 通过JNDI方式。
<bean id="consumerManager" class="org.springframework.ejb.access.LocalStatelessSessionProxyFactoryBean">
<property name="jndiName" value="local/ConsumerManager"/>
<property name="resourceRef" value="true"/>
<property name="businessInterface" value="com.blackhawk.ff.service.ConsumerManager"/>
</bean>
http://forum.springframework.org/showthread.php?t=16418&highlight=AbstractStatelessSessionBean