SimpleRemoteStatelessSessionProxyFactoryBean
When I do something like this:
<bean id="orclProducerService" class="org.springframework.ejb.access.SimpleRemote StatelessSessionProxyFactoryBean"
lazy-init="true" >
<property name="jndiName">
<value>IOrclProducerServiceHomeRemote</value>
</property>
<property name="businessInterface">
<value>interface.IProducerService</value>
</property>
</bean>
I understand that orclProducerService will have a reference to a "EJBObject" of Bean, won't it ? A cache of this
But... what will it happen if My Remote Bean is redeployed ?
My orclProducerService will lost the reference, won't it ?
Why don't it happen ? Does The framework cache the handle of EJBObject ? I looked the sources but it is not clear to me...
Could somebody give me a explanation about it ?
Thank in advance