Exposing multiple objects with RMI in Spring - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T09:03:40Zhttp://stackoverflow.com/feeds/question/673198http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/673198/exposing-multiple-objects-with-rmi-in-spring0Exposing multiple objects with RMI in Springflybywire2009-03-23T12:28:35Z2009-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#6733632Answer by Mark for Exposing multiple objects with RMI in SpringMark2009-03-23T13:29:30Z2009-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>