I have a JSF2 project (on GlassFish 3.1).
I'm using @EJB to inject services into managed beans.
Now I have a converter annotated with @FacesConverter. I tried to do this (below) but it doesn't work, myService is always null.
Can I use @EJB to inject my service into a converter? If not, what's the "correct" way to do this?
@FacesConverter
public class MyConverter implements Converter {
@EJB
protected MyService myService;
@Override
public Object getAsObject(FacesContext context, UIComponent component, String value) {
// myService.doSomething
}
}
Any help is appreciated!
Thanks,
Rob