如何在 JBoss 6 下的多应用程序部署中使用 EJB 3.1 远程接口?
我在 JBoss 6 下部署了以下一组 Java EE 6 应用程序:
- 具有 EJB 远程接口的通用 JAR
- 第一个 WAR 应用程序,具有该 EJB 远程接口的实现
- 第二个 WAR 应用程序,具有使用 EJB 远程接口的 POJO (@EJB MyRemoteInterface remoteBean;)
- 两个 WAR 都有一个 Maven 依赖项,其范围提供给通用 JAR(不作为 JAR 包含在 WAR 的库中)
现在,所有应用程序构建良好,并且 WAR 能够使用 JAR 中的其他常见类。但在部署过程中,我收到错误,无法注入远程接口。
那么,处理两个 WAR 之间共享接口类文件的需要的正确方法是什么? 我是否必须将其作为 JAR 包含在 WEB-INF/lib 中才能使注入工作,或者部署它就足够了吗?
I have the following set of Java EE 6 applications deployed under JBoss 6:
- a common JAR with an EJB remote interface
- 1st WAR-Application with the implementation of that EJB remote interface
- 2nd WAR-Application with a POJO using the EJB remote interface (@EJB MyRemoteInterface remoteBean;)
- both WARs have a Maven dependeny with scope provided to the common JAR (not included as JAR within the WAR's lib)
Now, all applications builds fine and the WARs are able to use other common classes from the JAR. But during deployment, I get the error, that the remote interface can't be injected.
So, what is the correct way to deal with the need of sharing the interface class file between the 2 WARs?
Do I have to include it as a JAR in WEB-INF/lib in order to make injection work or should it be sufficient to have it deployed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Java EE 6 中执行此操作的方法是将公共依赖项包含在 .ear 文件的 lib 文件夹中。
您可以通过 Maven 配置此文件夹在最终 .ear 中的位置:
The way of doing this in Java EE 6 is by including the common dependencies in the lib folder of the .ear file.
You can configure the location of this folder in the final .ear via Maven: