Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am writing a (composite) component that needs to interact with my DAO. Here is how the Java part is declared:

@FacesComponent(value="selectLocation")
public class SelectLocation extends UINamingContainer {

To get the DAO object, I tried the CDI annotation:

    @Inject private LocationControl lc;

And that didn't work so I tried the Faces annotation:

    @ManagedProperty (value = "@{locationControl}") private LocationControl lc;

Both cases nothing happens -- the property lc ends up as null after the constructor finishes.

I use CDI in all my backing beans and it all works. This would be using Weld inside GlassFish 3.1.1. Any suggestions on how to get the resource?

share|improve this question
I don't do CDI, so here's a random (but intuitive) guess: try putting @Named on the class to get @Inject to work. The @ManagedProperty ain't ever going to work in CDI beans. It only works inside @ManagedBean beans. – BalusC Aug 23 '11 at 20:35
Dang I thought you were onto something there -- I tried java.inject.Named but still no joy. – AlanObject Aug 23 '11 at 21:03
Perhaps some scope is required? I'm not sure which one. In plain JSF2, component instances behave like @ViewScoped. – BalusC Aug 23 '11 at 21:06
Adding a @RequestScoped causes the application to be unable to deploy: WELD-001437 Normal scoped bean class javax.faces.component.UIComponent is not proxyable because the type is final or it contains a final method public final javax.faces.component.TransientStateHelper javax.faces.component.UIComponent.getTransientStateHelper(). – AlanObject Aug 23 '11 at 21:11
Well, that makes sense. Don't do it. After all, it's a bit odd to reference a DAO inside an UIComponent class. You usually do this in a backing bean class. What's the concrete functional requirement? You could for example use binding to bind this component to a real backing bean class. – BalusC Aug 23 '11 at 21:15
show 2 more comments

2 Answers

up vote 1 down vote accepted

I have a work-around for now, which is to basically put in the boiler-plate code that CDI et. al. is supposed to do away with. I now have this method:

public LocationControl getLocationControl() {
    if (lc != null) return lc;
    FacesContext fc = getFacesContext();
    Object obj = fc.getApplication().evaluateExpressionGet(fc, "#{locationControl}", LocationControl.class);
    if (obj instanceof LocationControl) lc = (LocationControl) obj;
    return lc;
}

I would like to know if anyone has a better solution.

share|improve this answer

I don't know if it also works for components, but with CDI + MyFaces CODI you have @Advanced to mark e.g. Phase-Listeners which should be able to use @Inject. If it doesn't work, you could create a feature request in their JIRA. They are pretty fast and there are frequent releases.

Or you use: MyBean myBean = BeanManagerProvider.getInstance().getContextualReference(MyBean.class); manually.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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