I'm trying to get a ManagedProperty injection working, where the injected bean resides in a jar included in my web application.
Bean to be injected:
@ManagedBean(name="messages")
@SessionScoped
public class Messages implements Serializable
{
Receiving bean:
@ManagedProperty(value="#{messages}")
private Messages messages;
public void setMessages(Messages messages)
{
this.messages = messages;
}
However, this doesn't work and I'm just getting the message "Unable to set property messages for managed bean". If I put the Messages class in the same package as the receiving bean instead of having it in it's own jar, it works just fine.