修改 Spring MVC 应用程序以通过从 Eclipse RCP 应用程序远程访问来访问

发布于 2024-11-18 21:46:32 字数 133 浏览 3 评论 0原文

我想问修改 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

执笔绘流年 2024-11-25 21:46:32

我的方法是将 Spring MVC 应用程序分层:

  • 表示层是使用 Spring MVC 的地方。它包含表示逻辑并调用服务层,
  • 服务层是业务逻辑所在的位置。它称数据访问层
  • 为持久逻辑所在的数据访问层。

因此,我必须使服务层的部分或全部服务可远程访问(使用 Spring HttpInvoker、Web 服务或其他服务),并可能添加一些专用于 RCP 应用程序细节的服务。

My approach would be to have the Spring MVC app split in layers:

  • the presentation layer is where Spring MVC is used. It contains the presentation logic and calls the service layer
  • the service layer is where the business logic is. It calls the data access layer
  • the data access layer is where the persistence logic is.

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文