According this article, I've implemented @ManagedProperty(value="#{settings}") to my backing bean:
BEAN Bde.java:
@Entity
@Table(name="bdeDATA")
@ViewScoped
@ManagedBean(name="BDE")
public class Bde implements Serializable
{
/**/
private static final long serialVersionUID = -705775502999920673L;
@Transient
@ManagedProperty(value = "#{settings}")
private Settings settings;
@Id
private Date create_date;
private Integer person_ID;
public Date getCreate_date() {
return create_date;
}
public void setCreate_date(Date create_date) {
this.create_date = create_date;
}
public Integer getPerson_ID() {
return person_ID;
}
public void setPerson_ID(Integer person_ID) {
this.person_ID = person_ID;
try
{
Settings.PWKITEM = (Pwk)Tools.find(person_ID);
if (Settings.PWKITEM != null) settings.setUserfound(true); /// PROBLEMATIC
}
catch (Exception e)
{
Tools.setErrorMessage("NOT FOUND "+e.getMessage());
}
}
// ManagedProperty settings ---------------------------------------------
public Settings getSettings() {
return settings;
}
public void setSettings(Settings settings) {
this.settings = settings;
}
public void setUserfound (boolean userfound){
settings.setUserfound(userfound);
}
public boolean isUserfound() {
return settings.isUserfound();
}
}
Settings.java:
@SessionScoped
@ManagedBean(name="settings")
public class Settings implements Serializable
{
/**/
private static final long serialVersionUID = 8613411699115714416L;
public static Pwk PWKITEM = new Pwk();
private boolean userfound = false;
public boolean isUserfound() {
return userfound;
}
public void setUserfound(boolean userfound) {
this.userfound = userfound;
}
}
XHTML (ajax call setPerson_ID):
<h:inputText id="persId" value="#{bean.bdeitem.persId}">
<f:ajax event="blur" render="name" execute="@this" />
</h:inputText>
<h:inputText id="name" value="#{bean.pwkitem.name}"/>
Problem is in try/catch:
- without the condition, object is found.
- when I change the condition for example to
if (Settings.PWKITEM != null) System.out.println("HELLO"),HELLOis writen to console. - if i try to add the
userfoundsetter, it is catched ("NOT FOUND").
What I'm doing wrong?
static? – BalusC May 30 '11 at 11:36userfoundsupposed to represent? Whether someone is logged in? For who is this information supposed? The user itself? Or everyone visiting the webapp? And what doesPWKITEMrepresent? – BalusC May 30 '11 at 11:45Userfoundis static boolean, which only tells, if the user has been found. This user is used on ajax call, if I putpersonIdto inputtext, ajax calls the setter and it if user is found (bsed on personId), rest of properties of object PWKITEM are filled. It's very hard to explain for me - work can be saved only if user with personId exists in database – gaffcz May 30 '11 at 12:05