Hi!
I wondering if it is possible to access EJBs without specifying them as beans in the spring xml-file.
Normally I do the configuration in spring xml config and it would look something like this for EJB2:
In my project I would do the same but by specifying the EJB in code to make it possible to choose which EJB to use in a dynamic way.Code:<bean id="ecpTestEjb" class="org.springframework.ejb.access.LocalStatelessSessionProxyFactoryBean" lazy-init="true"> <property name="jndiName" value="ecpTestEjb"/> <property name="businessInterface" value="se.ejb.EcpTest"/> </bean>
My question is: Is it possible to use an EJB without the bean configuration in the spring xml file?
/henrik


Reply With Quote
