Spring 自动重连及惰性查询服务

来源:http://www.xymyeah.com/426.html


场景

 

1. 如果客户端在服务器启动之前,尝试查询和缓存该服务stub,那么客户端的启动将会失败(即使还不需要该服务)。 

 

2. 重新启动RMI端点主机的服务器,需要自动重新注册这些stub。

 

<bean id="reportService" 
  class="org.springframework.remoting.rmi.RmiProxyFactoryBean"> 
  <property name="serviceUrl"> 
   <value>${showcasewiz.report.serviceurl}</value> 
  </property> 
  <property name="serviceInterface"> 
   <value>com.meetexpo.showcase.backend.service.ReportService</value> 
  </property> 
  <property name="lookupStubOnStartup"> 
     <value>false</value> 
  </property> 
  <property name="refreshStubOnConnectFailure"> 
    <value>true</value> 
  </property>
 
</bean> 

 

 

more:http://www.xymyeah.com/426.html



你可能感兴趣的:(spring,bean,服务器,Class)