Vaadin 和 spring 部署
我想使用 Vaadin 作为 UI,并以 sprig 服务作为后端。 我可以在一台 tomcat 服务器上运行 UI 模块,而在不同的服务器上运行 spring 服务吗? 这样做的原因是为了确保我们对 UI 和后端有一个干净的分离,因为它们每个人都可能有自己的 Spring 上下文文件,我不想将它们混合在一起。
我可能有多个用于 Spring 服务的服务器和一个或者两台服务器来服务 UI...这可能吗?
- 克达尔
I want to use Vaadin as UI with sprig service as backend.
Can i run the UI modules in one tomcat server and the spring services in different servers?
The reason for this is to ensure that we have a clean separation for UI and backend as each of them may have their own spring context files and i don't want to mix them up..
I may have multiple servers for spring services and one or two servers to serve UI...Is it possible?
- kdaal
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,这是一个老问题,但仍然是:
是的。
在我们的系统中,我们有一个与数据库通信的“后端服务器”,以及一个提供 Vaadin UI 的前端服务器。
我们使用自己的手动代理来调用后端服务器上的方法来服务器数据,并填充 Vaadin 容器。
绝对没有理由可以使用 Spring 远程处理来做同样的事情。
OK so this is an old question, but still:
Yes.
In our system, we have a "back end server", which talks to the database, and a front end server which serves up a Vaadin UI.
We use our own hand-rolled proxies to invoke methods on the back end server to server data, and populate Vaadin containers.
There is absolutely no reason why you could do the same using Spring remoting.
Spring Stuff Vaadin 插件 允许您定义和维护单独的 Spring 应用程序上下文Web 应用程序作为一个整体,以及每个 Vaadin 应用程序实例。
免责声明:我是作者
The Spring Stuff Vaadin add-on allows you to define and maintain separate Spring application contexts for the web application as a whole, and each Vaadin application instance.
Disclaimer: I'm the author