How do I implement a listener pattern over RMI using Spring?
- by predhme
So here is a generalized version of our application desgin:
@Controller
public class MyController {
@Autowired
private MyServiceInterface myServiceInterface;
@RequestMapping("/myURL")
public @ResponseBody String doSomething() {
MyListenerInterface listener = new MyListenerInterfaceImpl();
…