Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Errai 使用 GWT “摇滚” Web 开发。但是,我想利用我的 Spring 代码库在我的 Web 应用程序后端服务中使用。
服务如:
@Service public class ProductServiceImpl implements ProductService { // ... }
我可以在哪里从 GWT UI 端调用这个服务,当我已经在使用 JBoss Errai 时有哪些选项?
这是如何将 erai 服务与 spring 集成的示例
1.- 您可以通过一些 CDI 实现注入依赖项(对于 JBoss AS,它使用 Seam)。或者 2.- 如果你坚持使用 spring,你可以使用 Seam 来激活 spring 应用程序上下文。
在第一个选项中,您可以使用一些 erai 原型来获得应用程序的基本框架。在第二个选项中......您可以做同样的事情,但您必须阅读有关接缝弹簧上下文集成的信息。
原型链接
弹簧集成链接