public class

SimpleRemoteSlsbInvokerInterceptor

extends AbstractRemoteSlsbInvokerInterceptor
implements DisposableBean
java.lang.Object
   ↳ org.springframework.jndi.JndiAccessor
     ↳ org.springframework.jndi.JndiLocatorSupport
       ↳ org.springframework.jndi.JndiObjectLocator
         ↳ org.springframework.ejb.access.AbstractSlsbInvokerInterceptor
           ↳ org.springframework.ejb.access.AbstractRemoteSlsbInvokerInterceptor
             ↳ org.springframework.ejb.access.SimpleRemoteSlsbInvokerInterceptor
Known Direct Subclasses

Class Overview

Basic invoker for a remote Stateless Session Bean. Designed for EJB 2.x, but works for EJB 3 Session Beans as well.

"Creates" a new EJB instance for each invocation, or caches the session bean instance for all invocations (see setCacheSessionBean(boolean)). See JndiObjectLocator for info on how to specify the JNDI location of the target EJB.

In a bean container, this class is normally best used as a singleton. However, if that bean container pre-instantiates singletons (as do the XML ApplicationContext variants) you may have a problem if the bean container is loaded before the EJB container loads the target EJB. That is because by default the JNDI lookup will be performed in the init method of this class and cached, but the EJB will not have been bound at the target location yet. The best solution is to set the "lookupHomeOnStartup" property to "false", in which case the home will be fetched on first access to the EJB. (This flag is only true by default for backwards compatibility reasons).

This invoker is typically used with an RMI business interface, which serves as super-interface of the EJB component interface. Alternatively, this invoker can also proxy a remote SLSB with a matching non-RMI business interface, i.e. an interface that mirrors the EJB business methods but does not declare RemoteExceptions. In the latter case, RemoteExceptions thrown by the EJB stub will automatically get converted to Spring's unchecked RemoteAccessException.

Summary

[Expand]
Inherited Constants
From class org.springframework.jndi.JndiLocatorSupport
[Expand]
Inherited Fields
From class org.springframework.jndi.JndiAccessor
Public Constructors
SimpleRemoteSlsbInvokerInterceptor()
Public Methods
void destroy()
Remove the cached session bean instance, if necessary.
void setCacheSessionBean(boolean cacheSessionBean)
Set whether to cache the actual session bean object.
Protected Methods
Object doInvoke(MethodInvocation invocation)
This implementation "creates" a new EJB instance for each invocation.
Object getSessionBeanInstance()
Return an EJB component instance to delegate the call to.
void refreshHome()
Reset the cached session bean instance, if necessary.
void releaseSessionBeanInstance(EJBObject ejb)
Release the given EJB instance.
[Expand]
Inherited Methods
From class org.springframework.ejb.access.AbstractRemoteSlsbInvokerInterceptor
From class org.springframework.ejb.access.AbstractSlsbInvokerInterceptor
From class org.springframework.jndi.JndiObjectLocator
From class org.springframework.jndi.JndiLocatorSupport
From class org.springframework.jndi.JndiAccessor
From class java.lang.Object
From interface org.springframework.beans.factory.DisposableBean
From interface org.springframework.beans.factory.InitializingBean

Public Constructors

public SimpleRemoteSlsbInvokerInterceptor ()

Public Methods

public void destroy ()

Remove the cached session bean instance, if necessary.

public void setCacheSessionBean (boolean cacheSessionBean)

Set whether to cache the actual session bean object.

Off by default for standard EJB compliance. Turn this flag on to optimize session bean access for servers that are known to allow for caching the actual session bean object.

Protected Methods

protected Object doInvoke (MethodInvocation invocation)

This implementation "creates" a new EJB instance for each invocation. Can be overridden for custom invocation strategies.

Alternatively, override getSessionBeanInstance() and releaseSessionBeanInstance(EJBObject) to change EJB instance creation, for example to hold a single shared EJB component instance.

Parameters
invocation the AOP method invocation
Returns
  • the invocation result, if any
Throws
Throwable

protected Object getSessionBeanInstance ()

Return an EJB component instance to delegate the call to.

The default implementation delegates to newSessionBeanInstance().

Returns
  • the EJB component instance
Throws
NamingException if thrown by JNDI
InvocationTargetException if thrown by the create method

protected void refreshHome ()

Reset the cached session bean instance, if necessary.

protected void releaseSessionBeanInstance (EJBObject ejb)

Release the given EJB instance.

The default implementation delegates to removeSessionBeanInstance(EJBObject).

Parameters
ejb the EJB component instance to release