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

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?

share|improve this question

3 Answers

Probably your consumer class doesn't have setters/getters for tb

share|improve this answer

Why not add @SessionScoped to your JavaBean? See my explanation to this SO Question. Secondly, you don't do #{tb.getName}, rather use EL Expression #{tb.name} instead.

share|improve this answer
It is declared SessoNScoped in the faces-config. Although from some testing I think it might be a problem with the library as I noticed that tb was null. – David Apr 5 '11 at 7:06

You can also take a look at the Flash scope, the idea is to use this if you just want to pass values/objects from one view to another, and you don't want to burden the server with a session state.

For an example see: http://jugojava.blogspot.com/2011/06/jsf2-flash-scope-example.html

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.