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

I have a <h:inputText> which accepts a long value like this

<h:inputText value="#{ServiceTable.ID}" />

The property is declared like this

public class ServiceTable {

    private long ID;

    // Getter and setter for ID.
}

When I open the page, I always see 0 in the textbox. How can I avoid it? I just need an empty textbox. I am using JSF 1.2.

share|improve this question

2 Answers

up vote 2 down vote accepted

Use Long instead of long. It defaults to null.

private Long ID;

And, if you're running Tomcat 6.0.16 or newer or a fork of it, then you need to add the following VM argument to server startup arguments as well to disable EL coercion of primitives and their wrappers:

-Dorg.apache.el.parser.COERCE_TO_ZERO=false
share|improve this answer
Thanks BalusC for the response.I read your blog regularly.It is very informative and useful for newbees. Can you explain me what is the difference? – Sreeram Sep 20 '11 at 14:25
long is a primitive which has a default value of 0 when declared as class/instance variable. Long is a wrapper object which has a default value of null. This is just basic Java. See also the Java tutorial on primitive types: download.oracle.com/javase/tutorial/java/nutsandbolts/… – BalusC Sep 20 '11 at 14:26
Thanks for the help BalusC.It worked.Can you tell where to add the above command? – Sreeram Sep 20 '11 at 14:30
As startup VM argument or as JAVA_OPTS environment variable. But if it works, then you don't need to add that argument anyway. – BalusC Sep 20 '11 at 14:34
I also have another small clarification.Today i went through this question which you answered stackoverflow.com/questions/2524514/… It is working fine.But the check boxes remain selected even after submission.How to avoid that? – Sreeram Sep 20 '11 at 14:39
show 2 more comments

awful! many developers do not have access to the actual server, and sometimes you just cant go to the client and tell him :" stop your server and restart everything with this start up options".

How come people in the apache team never thought about that?

If you are in such situation - like myself - another solution is to get the field as a String and parse it manually in your backing bean.

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.