I have Postgresql 8.4 table
CREATE TABLE users
(
username character varying(50) NOT NULL,
"password" character varying(50) NOT NULL,
enabled boolean NOT NULL,
type_of_signature boolean NOT NULL,
companyusers2_id integer NOT NULL,
numberorganizac character(8) NOT NULL,
);
In that table i have just one row: ""admin";"admin";TRUE;TRUE;1;"12345678"
I have JPA
@Entity
@Table(name="users")
public class Users implements Serializable {
...
private boolean typeOfSignature;
...
@Column(name="type_of_signature")
public boolean getTypeOfSignature() {
return this.typeOfSignature;
}
public void setTypeOfSignature(boolean typeOfSignature) {
this.typeOfSignature = typeOfSignature;
}
...
}
I have JSF
<h:outputText value="Type of signature is NULL" rendered="#{curUser.typeOfSignature == null}"/>
<h:outputText value="Type of Signature is TRUE" rendered="#{curUser.typeOfSignature}"/>
<h:outputText value="Type of Signature is FALSE" rendered="#{!curUser.typeOfSignature}"/>
I always get "Type of signature is NULLType of Signature is FALSE" at result page.
But I also have method in my bean
if(getCurUser().getTypeOfSignature())
{
jpaBean.pushSignature(dataItem, 1);
}
else
{
jpaBean.pushSignature(dataItem, 2);
}
And it works right depending on type of user's signature.
Why I always get NULL in JSF? Or I'm a newby and have done something wrong?
boolean, not aBoolean.getCurUser().getTypeOfSignature() == nullwould be a compilation error in Java. Is this just how JSF handles the error case? – Adrian Cox Jun 20 '11 at 8:53Booleanandboolean. Both variants make the same result Type of signature is NULLType of Signature is FALSE – Ronhul Maggot Jun 20 '11 at 9:03#{BEAN_NAME.curUser.typeOfSignature}– Ronhul Maggot Jun 20 '11 at 10:33The operator == is undefined for the argument type(s) boolean, null. Auto unboxing will promote abooleanto aBooleanin a function parameter, but won't allow a comparison with null. – Adrian Cox Jun 20 '11 at 13:00