public class

RmiClientInterceptor

extends RemoteInvocationBasedAccessor
java.lang.Object
   ↳ org.springframework.remoting.support.RemotingSupport
     ↳ org.springframework.remoting.support.RemoteAccessor
       ↳ org.springframework.remoting.support.UrlBasedRemoteAccessor
         ↳ org.springframework.remoting.support.RemoteInvocationBasedAccessor
           ↳ org.springframework.remoting.rmi.RmiClientInterceptor
Known Direct Subclasses

Class Overview

org.aopalliance.intercept.MethodInterceptor for accessing conventional RMI services or RMI invokers. The service URL must be a valid RMI URL (e.g. "rmi://localhost:1099/myservice").

RMI invokers work at the RmiInvocationHandler level, needing only one stub for any service. Service interfaces do not have to extend java.rmi.Remote or throw java.rmi.RemoteException. Spring's unchecked RemoteAccessException will be thrown on remote invocation failure. Of course, in and out parameters have to be serializable.

With conventional RMI services, this invoker is typically used with the RMI service interface. Alternatively, this invoker can also proxy a remote RMI service with a matching non-RMI business interface, i.e. an interface that mirrors the RMI service methods but does not declare RemoteExceptions. In the latter case, RemoteExceptions thrown by the RMI stub will automatically get converted to Spring's unchecked RemoteAccessException.

Summary

[Expand]
Inherited Fields
From class org.springframework.remoting.support.RemotingSupport
Public Constructors
RmiClientInterceptor()
Public Methods
void afterPropertiesSet()
Invoked by a BeanFactory after it has set all bean properties supplied (and satisfied BeanFactoryAware and ApplicationContextAware).
Object invoke(MethodInvocation invocation)
Fetches an RMI stub and delegates to doInvoke.
void prepare()
Fetches RMI stub on startup, if necessary.
void setCacheStub(boolean cacheStub)
Set whether to cache the RMI stub once it has been located.
void setLookupStubOnStartup(boolean lookupStubOnStartup)
Set whether to look up the RMI stub on startup.
void setRefreshStubOnConnectFailure(boolean refreshStubOnConnectFailure)
Set whether to refresh the RMI stub on connect failure.
void setRegistryClientSocketFactory(RMIClientSocketFactory registryClientSocketFactory)
Set a custom RMI client socket factory to use for accessing the RMI registry.
Protected Methods
Object doInvoke(MethodInvocation methodInvocation, RmiInvocationHandler invocationHandler)
Apply the given AOP method invocation to the given RmiInvocationHandler.
Object doInvoke(MethodInvocation invocation, Remote stub)
Perform the given invocation on the given RMI stub.
Remote getStub()
Return the RMI stub to use.
boolean isConnectFailure(RemoteException ex)
Determine whether the given RMI exception indicates a connect failure.
Remote lookupStub()
Create the RMI stub, typically by looking it up.
Object refreshAndRetry(MethodInvocation invocation)
Refresh the RMI stub and retry the given invocation.
[Expand]
Inherited Methods
From class org.springframework.remoting.support.RemoteInvocationBasedAccessor
From class org.springframework.remoting.support.UrlBasedRemoteAccessor
From class org.springframework.remoting.support.RemoteAccessor
From class org.springframework.remoting.support.RemotingSupport
From class java.lang.Object
From interface org.springframework.beans.factory.BeanClassLoaderAware
From interface org.springframework.beans.factory.InitializingBean

Public Constructors

public RmiClientInterceptor ()

Public Methods

public void afterPropertiesSet ()

Invoked by a BeanFactory after it has set all bean properties supplied (and satisfied BeanFactoryAware and ApplicationContextAware).

This method allows the bean instance to perform initialization only possible when all bean properties have been set and to throw an exception in the event of misconfiguration.

public Object invoke (MethodInvocation invocation)

Fetches an RMI stub and delegates to doInvoke. If configured to refresh on connect failure, it will call refreshAndRetry(MethodInvocation) on corresponding RMI exceptions.

Throws
Throwable
See Also

public void prepare ()

Fetches RMI stub on startup, if necessary.

Throws
RemoteLookupFailureException if RMI stub creation failed

public void setCacheStub (boolean cacheStub)

Set whether to cache the RMI stub once it has been located. Default is "true".

Can be turned off to allow for hot restart of the RMI server. In this case, the RMI stub will be fetched for each invocation.

public void setLookupStubOnStartup (boolean lookupStubOnStartup)

Set whether to look up the RMI stub on startup. Default is "true".

Can be turned off to allow for late start of the RMI server. In this case, the RMI stub will be fetched on first access.

public void setRefreshStubOnConnectFailure (boolean refreshStubOnConnectFailure)

Set whether to refresh the RMI stub on connect failure. Default is "false".

Can be turned on to allow for hot restart of the RMI server. If a cached RMI stub throws an RMI exception that indicates a remote connect failure, a fresh proxy will be fetched and the invocation will be retried.

See Also
  • java.rmi.ConnectException
  • java.rmi.ConnectIOException
  • java.rmi.NoSuchObjectException

public void setRegistryClientSocketFactory (RMIClientSocketFactory registryClientSocketFactory)

Set a custom RMI client socket factory to use for accessing the RMI registry.

Protected Methods

protected Object doInvoke (MethodInvocation methodInvocation, RmiInvocationHandler invocationHandler)

Apply the given AOP method invocation to the given RmiInvocationHandler.

The default implementation delegates to createRemoteInvocation(MethodInvocation).

Parameters
methodInvocation the current AOP method invocation
invocationHandler the RmiInvocationHandler to apply the invocation to
Returns
  • the invocation result
Throws
RemoteException in case of communication errors
NoSuchMethodException if the method name could not be resolved
IllegalAccessException if the method could not be accessed
InvocationTargetException if the method invocation resulted in an exception
See Also

protected Object doInvoke (MethodInvocation invocation, Remote stub)

Perform the given invocation on the given RMI stub.

Parameters
invocation the AOP method invocation
stub the RMI stub to invoke
Returns
  • the invocation result, if any
Throws
Throwable in case of invocation failure

protected Remote getStub ()

Return the RMI stub to use. Called for each invocation.

The default implementation returns the stub created on initialization, if any. Else, it invokes lookupStub() to get a new stub for each invocation. This can be overridden in subclasses, for example in order to cache a stub for a given amount of time before recreating it, or to test the stub whether it is still alive.

Returns
  • the RMI stub to use for an invocation
Throws
RemoteLookupFailureException if RMI stub creation failed
See Also

protected boolean isConnectFailure (RemoteException ex)

Determine whether the given RMI exception indicates a connect failure.

The default implementation delegates to isConnectFailure(RemoteException).

Parameters
ex the RMI exception to check
Returns
  • whether the exception should be treated as connect failure

protected Remote lookupStub ()

Create the RMI stub, typically by looking it up.

Called on interceptor initialization if "cacheStub" is "true"; else called for each invocation by getStub().

The default implementation looks up the service URL via java.rmi.Naming. This can be overridden in subclasses.

Returns
  • the RMI stub to store in this interceptor
Throws
RemoteLookupFailureException if RMI stub creation failed

protected Object refreshAndRetry (MethodInvocation invocation)

Refresh the RMI stub and retry the given invocation. Called by invoke on connect failure.

Parameters
invocation the AOP method invocation
Returns
  • the invocation result, if any
Throws
Throwable in case of invocation failure