焊接不是注射

时间:2013-01-25 11:50:05

标签: java weld

我正在尝试在java SE中设置一个非常简单的焊接实现。

我有扩展类:

public class MyExtension implements Extension {

    void beforeBeanDiscovery(@Observes BeforeBeanDiscovery bbd) {
        System.out.println("Starting scan...");
    }      
    <T> void processAnnotatedType(@Observes ProcessAnnotatedType<T> annotatedType, BeanManager beanManager) {
        System.out.println("Scanning type: " + annotatedType.getAnnotatedType().getJavaClass().getName());
    } 
    void afterBeanDiscovery(@Observes AfterBeanDiscovery abd) {
        System.out.println("Finished the scanning process");
    }

    public void main(@Observes ContainerInitialized event) {
        System.out.println("Starting application");
        new Test();
    }
}

然后我有一个我想要注入的简单类:

public class SimpleClass {
    public void doSomething() {
        System.out.println("Consider it done");
    }
}

最后我要把它注入课程中:

public class Test {

    @Inject
    private SimpleClass simple;

    @PostConstruct
    public void initialize() {
        simple.doSomething();
    }

    @PreDestroy
    public void stop() {
        System.out.println("Stopping");
    }
}

结果输出为:

80 [main] INFO org.jboss.weld.Version - WELD-000900 1.1.10 (Final)
272 [main] INFO org.jboss.weld.Bootstrap - WELD-000101 Transactional services not available. Injection of @Inject UserTransaction not available. Transactional observers will be invoked synchronously.
Starting scan...
Scanning type: test.Test
Scanning type: test.SimpleClass
Scanning type: test.MyExtension
640 [main] WARN org.jboss.weld.interceptor.util.InterceptionTypeRegistry - Class 'javax.ejb.PostActivate' not found, interception based on it is not enabled
640 [main] WARN org.jboss.weld.interceptor.util.InterceptionTypeRegistry - Class 'javax.ejb.PrePassivate' not found, interception based on it is not enabled
Finished the scanning process
Starting application

我希望在构造Test()时调用简单类,并调用应该输出预期文本的postconstruct方法。

我究竟做错了什么?

3 个答案:

答案 0 :(得分:5)

您的代码存在两个问题:

问题1

CDI不管理使用new创建的bean。在大多数情况下,您需要@Inject a bean以使其生命周期由容器管理

问题2:

在大多数情况下,您无法将bean实例注入容器事件的观察者。那是因为事件在容器初始化时触发,也就是说它实际上可以开始管理对象生命周期。

您可以将容器初始化程序观察器直接挂钩到Test类中。像这样:

public class SimpleClass {
    public void doSomething() {
        System.out.println("Consider it done");
    }

   @PostConstruct
    public void initialize() {
        System.out.println("Starting");
    }

    @PreDestroy
    public void stop() {
        System.out.println("Stopping");
    }
}

public class Test {

    @Inject
    private SimpleClass simple;

    public void main(@Observes ContainerInitialized event) {
        System.out.println("Starting application");
        simple.doSomething();
    }       
}

答案 1 :(得分:0)

你做错了就是打电话给new Test()。这构建了一个新的Test实例,但是在CDI的后面。要让CDI注入Test实例,CDI必须自己创建它。

请参阅the documentation for how to boostrap Weld in a Java SE environment

答案 2 :(得分:0)

使用@ApplicationScoped创建一个utils类。这个类可以生成每种类型的对象。在你的情况下,这就像这样:

@Produces
static SimpleClass generateSimpleClass(){
return new SimpleClass();
}

否则,如果您的simpleclass将成为应用程序中的唯一类,请将其类设置为@ApplicationScoped。问题是如果既没有注释也没有生产者

,焊接不知道该类属于容器