Exposing multiple objects with RMI in Spring - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T09:03:40Z http://stackoverflow.com/feeds/question/673198 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/673198/exposing-multiple-objects-with-rmi-in-spring 0 Exposing multiple objects with RMI in Spring flybywire 2009-03-23T12:28:35Z 2009-03-23T13:29:30Z <p>How do I expose multiple objects with RMI using Spring?</p> <p>I start with what is written <a href="http://static.springframework.org/spring/docs/2.5.x/reference/remoting.html#remoting-rmi-server" rel="nofollow">here</a>.</p> <p>What if I want to expose more objects, must I declare another instance of RMIServiceExporter?</p> http://stackoverflow.com/questions/673198/exposing-multiple-objects-with-rmi-in-spring/673363#673363 2 Answer by Mark for Exposing multiple objects with RMI in Spring Mark 2009-03-23T13:29:30Z 2009-03-23T13:29:30Z <p>Yes you need to declare an instance of RMIServiceExporter for each service you wish to expose. Each RMIServiceExporter can only be associated with a single service instance and service interface.</p>