修改 Spring MVC 应用程序以通过从 Eclipse RCP 应用程序远程访问来访问
我想问修改 Spring MVC 以通过 Eclipse RCP 应用程序远程访问的最佳方式是什么?您会选择什么方法?为什么?
网上有关于 Eclipse RCP 远程处理的教程吗?
如有任何建议和建议,我们将不胜感激。
I would like to ask what would be the best wa to modify a Spring MVC to be accessed via remoting from Eclipse RCP application? What approach would you choose and why?
And is there any tutorial regarding Eclipse RCP remoting on the web?
Any advices and recommendations are appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的方法是将 Spring MVC 应用程序分层:
因此,我必须使服务层的部分或全部服务可远程访问(使用 Spring HttpInvoker、Web 服务或其他服务),并可能添加一些专用于 RCP 应用程序细节的服务。
My approach would be to have the Spring MVC app split in layers:
I would thus have to make some or all of the services of the service layer remotely accessible (using Spring HttpInvoker, web services or whatever), and potentially add some more dedicated to the specifics of the RCP app.