Dependency injection through constructor does not work for EJB bean












1














My app is being deployed on to IBM WebSphere. I have a simple service and I'd like to know how dependency injection works in this case.



// stateless EJB
@Stateless
public class UserService {

private UserDAO userDAO;

// btw, UserDAO is stateless EJB as well
@Inject
public UserService(UserDAO userDAO) {
this.userDAO = userDAO;
}

// biz methods ...
}


It fails with the following error:




[ERROR ] CWWKZ0002E: An exception occurred while starting the
application my-app. The exception message was:
com.ibm.ws.container.service.state.StateChangeException:
com.ibm.ws.cdi.CDIException:
com.ibm.wsspi.injectionengine.InjectionException:
com.ibm.ejs.container.EJBConfigurationException: EJB class
com.demo.app.UserService must have a
public constructor that takes no parameters




I remember there was something in EJB spec that says: the class must have a public constructor that takes no parameters and it makes sense for me that the bean instance is first instantiated by the container and afterward dependency injection is done.



On the other hand, I've found this in WELD docs:




First, the container calls the bean constructor (the default
constructor or the one annotated @Inject), to obtain an instance of
the bean.




And I am confused a little bit, why my EJB cannot be instantiated.



How is the EJB instance being created and dependencies injected when we have constructor injection point?



Any ideas? :)










share|improve this question





























    1














    My app is being deployed on to IBM WebSphere. I have a simple service and I'd like to know how dependency injection works in this case.



    // stateless EJB
    @Stateless
    public class UserService {

    private UserDAO userDAO;

    // btw, UserDAO is stateless EJB as well
    @Inject
    public UserService(UserDAO userDAO) {
    this.userDAO = userDAO;
    }

    // biz methods ...
    }


    It fails with the following error:




    [ERROR ] CWWKZ0002E: An exception occurred while starting the
    application my-app. The exception message was:
    com.ibm.ws.container.service.state.StateChangeException:
    com.ibm.ws.cdi.CDIException:
    com.ibm.wsspi.injectionengine.InjectionException:
    com.ibm.ejs.container.EJBConfigurationException: EJB class
    com.demo.app.UserService must have a
    public constructor that takes no parameters




    I remember there was something in EJB spec that says: the class must have a public constructor that takes no parameters and it makes sense for me that the bean instance is first instantiated by the container and afterward dependency injection is done.



    On the other hand, I've found this in WELD docs:




    First, the container calls the bean constructor (the default
    constructor or the one annotated @Inject), to obtain an instance of
    the bean.




    And I am confused a little bit, why my EJB cannot be instantiated.



    How is the EJB instance being created and dependencies injected when we have constructor injection point?



    Any ideas? :)










    share|improve this question



























      1












      1








      1







      My app is being deployed on to IBM WebSphere. I have a simple service and I'd like to know how dependency injection works in this case.



      // stateless EJB
      @Stateless
      public class UserService {

      private UserDAO userDAO;

      // btw, UserDAO is stateless EJB as well
      @Inject
      public UserService(UserDAO userDAO) {
      this.userDAO = userDAO;
      }

      // biz methods ...
      }


      It fails with the following error:




      [ERROR ] CWWKZ0002E: An exception occurred while starting the
      application my-app. The exception message was:
      com.ibm.ws.container.service.state.StateChangeException:
      com.ibm.ws.cdi.CDIException:
      com.ibm.wsspi.injectionengine.InjectionException:
      com.ibm.ejs.container.EJBConfigurationException: EJB class
      com.demo.app.UserService must have a
      public constructor that takes no parameters




      I remember there was something in EJB spec that says: the class must have a public constructor that takes no parameters and it makes sense for me that the bean instance is first instantiated by the container and afterward dependency injection is done.



      On the other hand, I've found this in WELD docs:




      First, the container calls the bean constructor (the default
      constructor or the one annotated @Inject), to obtain an instance of
      the bean.




      And I am confused a little bit, why my EJB cannot be instantiated.



      How is the EJB instance being created and dependencies injected when we have constructor injection point?



      Any ideas? :)










      share|improve this question















      My app is being deployed on to IBM WebSphere. I have a simple service and I'd like to know how dependency injection works in this case.



      // stateless EJB
      @Stateless
      public class UserService {

      private UserDAO userDAO;

      // btw, UserDAO is stateless EJB as well
      @Inject
      public UserService(UserDAO userDAO) {
      this.userDAO = userDAO;
      }

      // biz methods ...
      }


      It fails with the following error:




      [ERROR ] CWWKZ0002E: An exception occurred while starting the
      application my-app. The exception message was:
      com.ibm.ws.container.service.state.StateChangeException:
      com.ibm.ws.cdi.CDIException:
      com.ibm.wsspi.injectionengine.InjectionException:
      com.ibm.ejs.container.EJBConfigurationException: EJB class
      com.demo.app.UserService must have a
      public constructor that takes no parameters




      I remember there was something in EJB spec that says: the class must have a public constructor that takes no parameters and it makes sense for me that the bean instance is first instantiated by the container and afterward dependency injection is done.



      On the other hand, I've found this in WELD docs:




      First, the container calls the bean constructor (the default
      constructor or the one annotated @Inject), to obtain an instance of
      the bean.




      And I am confused a little bit, why my EJB cannot be instantiated.



      How is the EJB instance being created and dependencies injected when we have constructor injection point?



      Any ideas? :)







      java java-ee dependency-injection ejb weld






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 19 '18 at 14:32

























      asked Nov 19 '18 at 14:27









      john

      1,50551827




      1,50551827
























          3 Answers
          3






          active

          oldest

          votes


















          3














          So what happens is that you do not meet the requirements for initializing EJB beans.



          CDI spec has some limitations on constructors - either no-args or one with @Inject.
          But there is also this chapter, which specifies that in EE, the set of rules is extended by what EJB session beans require.



          And now we are getting into EJB spec which requires a no-arg constructor on a bean.
          This should be in chapter Enterprise Bean Class where it states




          The class must define a public constructor that takes no arguments.




          Now, finally moving on to whether this should work - e.g. can you have an EJB bean using CDI constructor injection?
          Well, let's have a look at CDI TCK, a set of tests that all implementation and containers have to pass in order to be able to claim they implement CDI.
          There, we can see this bean and this test using it - so yea, this can work, but you need to have both constructors.






          share|improve this answer





























            3














            the creation of EJB session beans is done by EJB container but it can choose to use CDI to provide EE resource injection but EJB resolution is delegated to the container



            https://docs.jboss.org/weld/reference/2.1.0.Final/en-US/html/ri-spi.html says:




            Alternatively, the integrator may choose to use CDI to provide EE
            resource injection. In this case, the EE_INJECT environment should be
            used, and the integrator should implement the Section A.1.4, “EJB
            services”, Section A.1.7, “Resource Services” and Section A.1.5, “JPA
            services”.
            ....

            Weld registers resource injection points with
            EjbInjectionServices, JpaInjectionServices, ResourceInjectionServices
            and JaxwsInjectionServices implementations upfront (at bootstrap).
            This allows validation of resource injection points to be performed at
            boot time rather than runtime




            if you interested in how CDI and EJB are integrated. you can have a look at the code of weld-EJB module and weld-integration(glassfish code)






            share|improve this answer































              2














              EJBs are registered as CDI beans. But first they have to meet the requirements of the EJB spec.



              I guess it works just by providing the no-args constructor.






              share|improve this answer





















                Your Answer






                StackExchange.ifUsing("editor", function () {
                StackExchange.using("externalEditor", function () {
                StackExchange.using("snippets", function () {
                StackExchange.snippets.init();
                });
                });
                }, "code-snippets");

                StackExchange.ready(function() {
                var channelOptions = {
                tags: "".split(" "),
                id: "1"
                };
                initTagRenderer("".split(" "), "".split(" "), channelOptions);

                StackExchange.using("externalEditor", function() {
                // Have to fire editor after snippets, if snippets enabled
                if (StackExchange.settings.snippets.snippetsEnabled) {
                StackExchange.using("snippets", function() {
                createEditor();
                });
                }
                else {
                createEditor();
                }
                });

                function createEditor() {
                StackExchange.prepareEditor({
                heartbeatType: 'answer',
                autoActivateHeartbeat: false,
                convertImagesToLinks: true,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: 10,
                bindNavPrevention: true,
                postfix: "",
                imageUploader: {
                brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                allowUrls: true
                },
                onDemand: true,
                discardSelector: ".discard-answer"
                ,immediatelyShowMarkdownHelp:true
                });


                }
                });














                draft saved

                draft discarded


















                StackExchange.ready(
                function () {
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53376733%2fdependency-injection-through-constructor-does-not-work-for-ejb-bean%23new-answer', 'question_page');
                }
                );

                Post as a guest















                Required, but never shown

























                3 Answers
                3






                active

                oldest

                votes








                3 Answers
                3






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                3














                So what happens is that you do not meet the requirements for initializing EJB beans.



                CDI spec has some limitations on constructors - either no-args or one with @Inject.
                But there is also this chapter, which specifies that in EE, the set of rules is extended by what EJB session beans require.



                And now we are getting into EJB spec which requires a no-arg constructor on a bean.
                This should be in chapter Enterprise Bean Class where it states




                The class must define a public constructor that takes no arguments.




                Now, finally moving on to whether this should work - e.g. can you have an EJB bean using CDI constructor injection?
                Well, let's have a look at CDI TCK, a set of tests that all implementation and containers have to pass in order to be able to claim they implement CDI.
                There, we can see this bean and this test using it - so yea, this can work, but you need to have both constructors.






                share|improve this answer


























                  3














                  So what happens is that you do not meet the requirements for initializing EJB beans.



                  CDI spec has some limitations on constructors - either no-args or one with @Inject.
                  But there is also this chapter, which specifies that in EE, the set of rules is extended by what EJB session beans require.



                  And now we are getting into EJB spec which requires a no-arg constructor on a bean.
                  This should be in chapter Enterprise Bean Class where it states




                  The class must define a public constructor that takes no arguments.




                  Now, finally moving on to whether this should work - e.g. can you have an EJB bean using CDI constructor injection?
                  Well, let's have a look at CDI TCK, a set of tests that all implementation and containers have to pass in order to be able to claim they implement CDI.
                  There, we can see this bean and this test using it - so yea, this can work, but you need to have both constructors.






                  share|improve this answer
























                    3












                    3








                    3






                    So what happens is that you do not meet the requirements for initializing EJB beans.



                    CDI spec has some limitations on constructors - either no-args or one with @Inject.
                    But there is also this chapter, which specifies that in EE, the set of rules is extended by what EJB session beans require.



                    And now we are getting into EJB spec which requires a no-arg constructor on a bean.
                    This should be in chapter Enterprise Bean Class where it states




                    The class must define a public constructor that takes no arguments.




                    Now, finally moving on to whether this should work - e.g. can you have an EJB bean using CDI constructor injection?
                    Well, let's have a look at CDI TCK, a set of tests that all implementation and containers have to pass in order to be able to claim they implement CDI.
                    There, we can see this bean and this test using it - so yea, this can work, but you need to have both constructors.






                    share|improve this answer












                    So what happens is that you do not meet the requirements for initializing EJB beans.



                    CDI spec has some limitations on constructors - either no-args or one with @Inject.
                    But there is also this chapter, which specifies that in EE, the set of rules is extended by what EJB session beans require.



                    And now we are getting into EJB spec which requires a no-arg constructor on a bean.
                    This should be in chapter Enterprise Bean Class where it states




                    The class must define a public constructor that takes no arguments.




                    Now, finally moving on to whether this should work - e.g. can you have an EJB bean using CDI constructor injection?
                    Well, let's have a look at CDI TCK, a set of tests that all implementation and containers have to pass in order to be able to claim they implement CDI.
                    There, we can see this bean and this test using it - so yea, this can work, but you need to have both constructors.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Nov 20 '18 at 11:44









                    Siliarus

                    3,6871519




                    3,6871519

























                        3














                        the creation of EJB session beans is done by EJB container but it can choose to use CDI to provide EE resource injection but EJB resolution is delegated to the container



                        https://docs.jboss.org/weld/reference/2.1.0.Final/en-US/html/ri-spi.html says:




                        Alternatively, the integrator may choose to use CDI to provide EE
                        resource injection. In this case, the EE_INJECT environment should be
                        used, and the integrator should implement the Section A.1.4, “EJB
                        services”, Section A.1.7, “Resource Services” and Section A.1.5, “JPA
                        services”.
                        ....

                        Weld registers resource injection points with
                        EjbInjectionServices, JpaInjectionServices, ResourceInjectionServices
                        and JaxwsInjectionServices implementations upfront (at bootstrap).
                        This allows validation of resource injection points to be performed at
                        boot time rather than runtime




                        if you interested in how CDI and EJB are integrated. you can have a look at the code of weld-EJB module and weld-integration(glassfish code)






                        share|improve this answer




























                          3














                          the creation of EJB session beans is done by EJB container but it can choose to use CDI to provide EE resource injection but EJB resolution is delegated to the container



                          https://docs.jboss.org/weld/reference/2.1.0.Final/en-US/html/ri-spi.html says:




                          Alternatively, the integrator may choose to use CDI to provide EE
                          resource injection. In this case, the EE_INJECT environment should be
                          used, and the integrator should implement the Section A.1.4, “EJB
                          services”, Section A.1.7, “Resource Services” and Section A.1.5, “JPA
                          services”.
                          ....

                          Weld registers resource injection points with
                          EjbInjectionServices, JpaInjectionServices, ResourceInjectionServices
                          and JaxwsInjectionServices implementations upfront (at bootstrap).
                          This allows validation of resource injection points to be performed at
                          boot time rather than runtime




                          if you interested in how CDI and EJB are integrated. you can have a look at the code of weld-EJB module and weld-integration(glassfish code)






                          share|improve this answer


























                            3












                            3








                            3






                            the creation of EJB session beans is done by EJB container but it can choose to use CDI to provide EE resource injection but EJB resolution is delegated to the container



                            https://docs.jboss.org/weld/reference/2.1.0.Final/en-US/html/ri-spi.html says:




                            Alternatively, the integrator may choose to use CDI to provide EE
                            resource injection. In this case, the EE_INJECT environment should be
                            used, and the integrator should implement the Section A.1.4, “EJB
                            services”, Section A.1.7, “Resource Services” and Section A.1.5, “JPA
                            services”.
                            ....

                            Weld registers resource injection points with
                            EjbInjectionServices, JpaInjectionServices, ResourceInjectionServices
                            and JaxwsInjectionServices implementations upfront (at bootstrap).
                            This allows validation of resource injection points to be performed at
                            boot time rather than runtime




                            if you interested in how CDI and EJB are integrated. you can have a look at the code of weld-EJB module and weld-integration(glassfish code)






                            share|improve this answer














                            the creation of EJB session beans is done by EJB container but it can choose to use CDI to provide EE resource injection but EJB resolution is delegated to the container



                            https://docs.jboss.org/weld/reference/2.1.0.Final/en-US/html/ri-spi.html says:




                            Alternatively, the integrator may choose to use CDI to provide EE
                            resource injection. In this case, the EE_INJECT environment should be
                            used, and the integrator should implement the Section A.1.4, “EJB
                            services”, Section A.1.7, “Resource Services” and Section A.1.5, “JPA
                            services”.
                            ....

                            Weld registers resource injection points with
                            EjbInjectionServices, JpaInjectionServices, ResourceInjectionServices
                            and JaxwsInjectionServices implementations upfront (at bootstrap).
                            This allows validation of resource injection points to be performed at
                            boot time rather than runtime




                            if you interested in how CDI and EJB are integrated. you can have a look at the code of weld-EJB module and weld-integration(glassfish code)







                            share|improve this answer














                            share|improve this answer



                            share|improve this answer








                            edited Nov 20 '18 at 13:07

























                            answered Nov 20 '18 at 6:53









                            Mehran Mastcheshmi

                            3981210




                            3981210























                                2














                                EJBs are registered as CDI beans. But first they have to meet the requirements of the EJB spec.



                                I guess it works just by providing the no-args constructor.






                                share|improve this answer


























                                  2














                                  EJBs are registered as CDI beans. But first they have to meet the requirements of the EJB spec.



                                  I guess it works just by providing the no-args constructor.






                                  share|improve this answer
























                                    2












                                    2








                                    2






                                    EJBs are registered as CDI beans. But first they have to meet the requirements of the EJB spec.



                                    I guess it works just by providing the no-args constructor.






                                    share|improve this answer












                                    EJBs are registered as CDI beans. But first they have to meet the requirements of the EJB spec.



                                    I guess it works just by providing the no-args constructor.







                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered Nov 19 '18 at 15:08









                                    Frito

                                    3369




                                    3369






























                                        draft saved

                                        draft discarded




















































                                        Thanks for contributing an answer to Stack Overflow!


                                        • Please be sure to answer the question. Provide details and share your research!

                                        But avoid



                                        • Asking for help, clarification, or responding to other answers.

                                        • Making statements based on opinion; back them up with references or personal experience.


                                        To learn more, see our tips on writing great answers.





                                        Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                                        Please pay close attention to the following guidance:


                                        • Please be sure to answer the question. Provide details and share your research!

                                        But avoid



                                        • Asking for help, clarification, or responding to other answers.

                                        • Making statements based on opinion; back them up with references or personal experience.


                                        To learn more, see our tips on writing great answers.




                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function () {
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53376733%2fdependency-injection-through-constructor-does-not-work-for-ejb-bean%23new-answer', 'question_page');
                                        }
                                        );

                                        Post as a guest















                                        Required, but never shown





















































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown

































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown







                                        Popular posts from this blog

                                        MongoDB - Not Authorized To Execute Command

                                        in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

                                        How to fix TextFormField cause rebuild widget in Flutter