-
May 22nd, 2011, 10:33 AM
#1
calling an EJB with SimpleRemoteStatelessSessionProxyFactoryBean
i am trying to call an ejb with the configuration below.
Is it posible to set the number of ejb stubs.
in my application, there will be too many multithread requests to use that ejb so i want to create an application which has 15 ejb stub at least. Is it possible to configure?
<bean id="myEJBBean" class="org.springframework.ejb.access.SimpleRemote StatelessSessionProxyFactoryBean" scope="singleton">
<property name="jndiName" value="/XXXX"/>
<property name="lookupHomeOnStartup" value="false"/>
<property name="homeInterface" value="com.tech.exp.myEjb.MyBeanHome"/>
<property name="businessInterface" value="com.tech.exp.myEjb.MyBean"/>
</bean>
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules