0

我有一个具有以下结构的 EAR 文件:

    • jar.jar
      • 测试1
      • 测试2
  • ejb.jar
    • Test1Impl
  • 战争
    • Test2Impl
    • 测试服务程序

jar.jar 包含两个接口

  • 测试1
  • 测试2

只有当我在 war.war 中有一个清单类路径条目到 ejb.jar 时,TestServlet 才会注入解析为 Test1Impl 的 Test1。只有当我在 ejb.jar 中有一个清单 Class-Path 条目到 war.war 时,Test1Impl 才会注入解析为 Test2Impl 的 Test2。

提示条目匹配用于部署Weld 文档的类加载器结构解释了为什么我需要清单条目。这种交叉 BDA 注入应该如何正常工作?添加 Class-Path 清单条目似乎有点愚蠢,因为实际上我不希望实现可见。我只希望其他子部署中的 bean 可见。有没有办法做到这一点?

这里的实现

public class Test1Impl implements Test1 {

    @Inject
    private Test2 test2;

    public void hello() {
        System.out.println(test2.getString());
    }

}

public class Test2Impl implements Test2 {

    public String getString() {
        return "Hello";
    }

}

@WebServlet(urlPatterns = "/test")
public class TestServlet implements Servlet {

    @Inject
    private Test1 test;

    public void init(ServletConfig config) throws ServletException {
    }

    public ServletConfig getServletConfig() {
        return null;
    }

    public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException {
        test.hello();
    }

    public String getServletInfo() {
        return null;
    }

    public void destroy() {
    }

}

这里是 application.xml

<?xml version="1.0" encoding="UTF-8"?>
<application xmlns="http://xmlns.jcp.org/xml/ns/javaee"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/application_7.xsd"
             version="7">
  <description>The EAR</description>
  <display-name>ear</display-name>
  <module>
    <ejb>ejb.jar</ejb>
  </module>
  <module>
    <web>
      <web-uri>war.war</web-uri>
      <context-root>/</context-root>
    </web>
  </module>
  <library-directory>lib</library-directory>
</application>
4

1 回答 1

0

如在部署外部使用 CDI Bean部分中的CDI 参考中所述,需要具有适当依赖关系的 jboss-deployment-structure.xml。虽然这样做解决了我的问题,但我认为 CDI 规范应该为企业应用程序定义一种可移植的方式。

于 2014-08-25T18:47:26.473 回答