Startup ejb bean does not work
Asked Answered
L

1

16

I am trying to do something at startup using a startup ejb. But my bean is never called.

This is my bean:

import javax.annotation.PostConstruct;
import javax.ejb.Startup;
import javax.inject.Singleton;

@Singleton
@Startup
public class StartupBean {

    @PostConstruct
    public void doSomething(){
        System.out.println("why??");
    }

}

I am using jboss 7.1.1.

What am i doing wrong? You can find my source code at bitbucket: https://bitbucket.org/cremersstijn/jee/src/9e22ed2b798a/simple-startup-bean

Lute answered 30/8, 2012 at 19:31 Comment(0)
I
25

You're importing the wrong Singleton. If you want to create a singleton session bean, use javax.ejb.Singleton.

http://docs.oracle.com/javaee/6/api/javax/ejb/Singleton.html vs. http://docs.oracle.com/javaee/6/api/javax/inject/Singleton.html

Ixtle answered 30/8, 2012 at 20:47 Comment(1)
I would never spotted that. Thank you very much!Preoccupy

© 2022 - 2024 — McMap. All rights reserved.