类 JndiRmiServiceExporter
- java.lang.Object
- org.springframework.remoting.support.RemotingSupport
- org.springframework.remoting.support.RemoteExporter
- org.springframework.remoting.support.RemoteInvocationBasedExporter
- org.springframework.remoting.rmi.RmiBasedExporter
- org.springframework.remoting.rmi.JndiRmiServiceExporter
- 所有已实现的接口:
Aware,BeanClassLoaderAware,DisposableBean,InitializingBean
public class JndiRmiServiceExporter extends RmiBasedExporter implements InitializingBean, DisposableBean
Service exporter which binds RMI services to JNDI. Typically used for RMI-IIOP (CORBA).Exports services via the
javax.rmi.PortableRemoteObjectclass. You need to run "rmic" with the "-iiop" option to generate corresponding stubs and skeletons for each exported service.Also supports exposing any non-RMI service via RMI invokers, to be accessed via
JndiRmiClientInterceptor/JndiRmiProxyFactoryBean's automatic detection of such invokers.With an RMI invoker, RMI communication works on the
RmiInvocationHandlerlevel, needing only one stub for any service. Service interfaces do not have to extendjava.rmi.Remoteor throwjava.rmi.RemoteExceptionon all methods, but in and out parameters have to be serializable.The JNDI environment can be specified as "jndiEnvironment" bean property, or be configured in a
jndi.propertiesfile or as system properties. For example:<property name="jndiEnvironment"> <props> <prop key="java.naming.factory.initial">com.sun.jndi.cosnaming.CNCtxFactory</prop> <prop key="java.naming.provider.url">iiop://localhost:1050</prop> </props> </property>- 从以下版本开始:
- 1.1
- 作者:
- Juergen Hoeller
- 另请参阅:
RemoteExporter.setService(java.lang.Object),setJndiTemplate(org.springframework.jndi.JndiTemplate),setJndiEnvironment(java.util.Properties),setJndiName(java.lang.String),JndiRmiClientInterceptor,JndiRmiProxyFactoryBean,javax.rmi.PortableRemoteObject#exportObject
字段概要
从类继承的字段 org.springframework.remoting.support.RemotingSupport
logger
构造器概要
构造器 构造器 说明 JndiRmiServiceExporter()
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voidafterPropertiesSet()Invoked by the containingBeanFactoryafter it has set all bean properties and satisfiedBeanFactoryAware,ApplicationContextAwareetc.voiddestroy()Unbind the RMI service from JNDI on bean factory shutdown.voidprepare()Initialize this service exporter, binding the specified service to JNDI.voidrebind()Rebind the specified service to JNDI, for recovering in case of the target registry having been restarted.voidsetJndiEnvironment(Properties jndiEnvironment)Set the JNDI environment to use for JNDI lookups.voidsetJndiName(String jndiName)Set the JNDI name of the exported RMI service.voidsetJndiTemplate(JndiTemplate jndiTemplate)Set the JNDI template to use for JNDI lookups.从类继承的方法 org.springframework.remoting.rmi.RmiBasedExporter
getObjectToExport, invoke
从类继承的方法 org.springframework.remoting.support.RemoteInvocationBasedExporter
getRemoteInvocationExecutor, invokeAndCreateResult, setRemoteInvocationExecutor
从类继承的方法 org.springframework.remoting.support.RemoteExporter
checkService, checkServiceInterface, getExporterName, getProxyForService, getService, getServiceInterface, setInterceptors, setRegisterTraceInterceptor, setService, setServiceInterface
从类继承的方法 org.springframework.remoting.support.RemotingSupport
getBeanClassLoader, overrideThreadContextClassLoader, resetThreadContextClassLoader, setBeanClassLoader
构造器详细资料
JndiRmiServiceExporter
public JndiRmiServiceExporter()
方法详细资料
setJndiTemplate
public void setJndiTemplate(JndiTemplate jndiTemplate)
Set the JNDI template to use for JNDI lookups. You can also specify JNDI environment settings via "jndiEnvironment".
setJndiEnvironment
public void setJndiEnvironment(Properties jndiEnvironment)
Set the JNDI environment to use for JNDI lookups. Creates a JndiTemplate with the given environment settings.
setJndiName
public void setJndiName(String jndiName)
Set the JNDI name of the exported RMI service.
afterPropertiesSet
public void afterPropertiesSet() throws NamingException, RemoteException
从接口复制的说明:InitializingBeanInvoked by the containingBeanFactoryafter it has set all bean properties and satisfiedBeanFactoryAware,ApplicationContextAwareetc.This method allows the bean instance to perform validation of its overall configuration and final initialization when all bean properties have been set.
prepare
public void prepare() throws NamingException, RemoteException
Initialize this service exporter, binding the specified service to JNDI.- 抛出:
NamingException- if service binding failedRemoteException- if service export failed
rebind
public void rebind() throws NamingException
Rebind the specified service to JNDI, for recovering in case of the target registry having been restarted.- 抛出:
NamingException- if service binding failed
destroy
public void destroy() throws NamingException, NoSuchObjectException
Unbind the RMI service from JNDI on bean factory shutdown.