Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

<bean id="rmiserver"

class="org.springframework.remoting.rmi.RmiServiceExporter">
<property name="serviceName" value="GreetingService" />
<property name="service" ref="GreetingService" />
<property name="serviceInterface" value="com.learn.rmi.GreetingService" />
<property name="registryPort" value="1099"></property>

</bean>

<bean id="GreetingService" class="com.learn.rmi.GreetingServiceImpl"></bean>

<bean id="greetingServiceClient"
class="org.springframework.remoting.rmi.RmiProxyFactoryBean">
<property name="serviceUrl" value="rmi://localhost:1099/GreetingService"/>
<property name="serviceInterface" value="com.learn.rmi.GreetingService"/>
</bean>

You might also like