Hi,
I have configured a EJB session bean "myBean" using the
org.springframework.ejb.access.SimpleRemoteStatele ssSessionProxyFactoryBean.
Its properties are set as:
<property name="jndiName">
<value>ejb/*my name*</value>
</property>
<property name="businessInterface">
<value>*my class*</value>
</property>
<property name="jndiEnvironment">
<ref bean=*myJNDI.properties*/>
</property>
This is not a critical EJB remote for the app. The problem is that when
application starts and when EJB server is down application will not start
because this bean can not be instantiated.
Is there any way that I can let application go on without this bean being instantiated. It is used for trivial purposes and the application can live without it being instantiated.
Thank you,
Edmon


Reply With Quote