Results 1 to 1 of 1
- 10-04-2007, 09:24 PM #1
How to use RmiProxyFactoryBean for Importing RMI Service in Spring framework
RmiProxyFactoryBean is used in Spring Framework to invoke an existing RMI Service. It enables to wire the RMI services into spring application as if they were local beans.
It is declared in configuration File Like:
Java Code:<bean id="service1" class="org.springframework.remoting.rmi.RmiProxyFactoryBean"> <property name="serviceUrl"> <value>rmi://${hostname}/service1</value> </property> <property name="serviceInterface"> <value>service1</value> </property> </bean>
Similar Threads
-
How to use RmiProxyFactoryBean for Importing RMI Service in Spring framework
By Java Tip in forum Spring FrameworkReplies: 0Last Post: 04-02-2008, 10:49 AM -
Exporting RMI Service in Spring framework
By Java Tip in forum Spring FrameworkReplies: 0Last Post: 04-02-2008, 10:39 AM -
What is use of NamedParameterJdbcTemplate in Spring Framework
By Java Tip in forum Java TipReplies: 0Last Post: 04-01-2008, 10:39 AM -
Exporting RMI Service in Spring framework
By JavaBean in forum Java TipReplies: 0Last Post: 10-04-2007, 09:23 PM -
What is the use of NamedParameterJdbcTemplate in Spring Framework
By JavaBean in forum Java TipReplies: 0Last Post: 09-28-2007, 12:57 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks