类 RemoteAccessor

  • 所有已实现的接口:
    Aware, BeanClassLoaderAware
    直接已知子类:
    UrlBasedRemoteAccessor

    public abstract class RemoteAccessor
    extends RemotingSupport
    Abstract base class for classes that access a remote service. Provides a "serviceInterface" bean property.

    Note that the service interface being used will show some signs of remotability, like the granularity of method calls that it offers. Furthermore, it has to have serializable arguments etc.

    Accessors are supposed to throw Spring's generic RemoteAccessException in case of remote invocation failure, provided that the service interface does not declare java.rmi.RemoteException.

    从以下版本开始:
    13.05.2003
    作者:
    Juergen Hoeller
    另请参阅:
    RemoteAccessException, RemoteException
    • 方法详细资料

      • setServiceInterface

        public void setServiceInterface​(Class<?> serviceInterface)
        Set the interface of the service to access. The interface must be suitable for the particular service and remoting strategy.

        Typically required to be able to create a suitable service proxy, but can also be optional if the lookup returns a typed proxy.