CDI 激活打包在 jar 中的生产者

发布于 2024-09-24 00:29:44 字数 334 浏览 5 评论 0原文

我有一个生产者,我想把它放在一个罐子里,这样我的 diff war 文件就可以引用相同的实现,

public class LogFactory {

  @Produces
  public Logger createLogger(InjectionPoint injectionPoint) {
    return Logger.getLogger(injectionPoint.getMember().getDeclaringClass().getName());
  }
}

但现在,glassfish (3.0.1) 无法自动发现生产者方法

如何解决这个问题?

i have a producer, i want to put it in a jar, so that my diff war files can refer the same implementation

public class LogFactory {

  @Produces
  public Logger createLogger(InjectionPoint injectionPoint) {
    return Logger.getLogger(injectionPoint.getMember().getDeclaringClass().getName());
  }
}

but it turns now, glassfish (3.0.1) can not auto discover the producer method

how to fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

野稚 2024-10-01 00:29:44

我不是 100% 确定,但是 JAR CDI 是否已启用(即它是否有 beans.xml)?

I'm not 100% sure but is the JAR CDI enabled (i.e. does it have a beans.xml)?

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