Question

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?

Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top