I'm trying to share an object between several SessionScoped beans. I get errors though and I really don't know why.
@ManagedProperty(value="#{tb}")
private testBean tb;
I believe that this is the right syntax, but any call like tb.getName results in an exception.
@ManagedBean(name = "tb")
public class testBean
{
private String name = "sumthing";
public void setName(String name)
{
this.name = name;
}
public String getName()
{
return this.name;
}
}
Have I completely misunderstod how ManagedProperty works?