In my JEE project, there are several "JEE" modules and a web module. One of the JEE modules provides a class to CDI that is to be used by the other modules:

@ApplicationScoped
public class XFactory {

  @Produces @Actual
  public X create() {
     return new X();
  }
}

They are injected into

   @SessionScoped
   public class Target implements Serializable {
       X x;

      @Inject
      public void setX(@Actual X x){
        this.x = x;
      }
   }

However, this works only in one of the JEE modules and in the web module. In all of the remaining JEE modules, injection consistently fails, and I am clueless as to why: All I get is WELD-1408, unsatisfied dependency.

All of the modules have beans.xml in the proper places, they all work as long as I don't switch to injection. Most of the target beans are already in use as injected beans in a JSF. What's special about the JEE module that works is that the bean is injected into a servlet in the web module, not the JSF.

The project runs with JEE 6, EJB 3.1 in Glassfish 3.1. Dependencies are managed by Maven 3. X itself is Serializable, to satisfy the passivating scopes.

Did you come across this before? What could I have done wrong?

Update: Added dependency management remark above.

Update: Corrected the position of @Actual in Target.

Update: Updated the description with more details after a day of experiments.

link|improve this question

No answers as yet. I am going to re-write the module step by step and see at which point injection fails to work. Still appreciating your input, though. – Urs Reupke Jul 29 '11 at 6:00
There seems to be more amiss than I first thought. My statement that everything works just fine outside of that single project might have been wrong: Injection fails even in the simplest of modules. I am starting to wonder why it works in one of them. – Urs Reupke Jul 29 '11 at 7:04
feedback

1 Answer

up vote 1 down vote accepted

This appears to be a problem in Glassfish 3.1, in one of its included libraries, or possibly in JDK 6.

I have just updated my system to Glassfish 3.1.1 and JDK 7, and problem does not occur any longer.

link|improve this answer
I will investigate some more while replacing the Xs with production code before accepting the answer. – Urs Reupke Jul 29 '11 at 10:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.