简体   繁体   中英

JSF 2 - hiding default values on <? extends Number>

is there a way to hide the default values of my number properties? I've got a int field and on my view the <h:inputText /> field shows a 0. In addition to this, if I leave this input empty I get a NullPointerException on this.

Can I hide the default value and treat empty inputs as default value?

I'm using mojarra 2.1.2 on Tomcat 7

The primitive int always defaults to 0 . You want to use Integer instead. Eg:

public class Entity {

    private Integer value;

    // ...
}

As to keeping it null while submitting empty data, add the following context param to your web.xml :

<context-param>
    <param-name>javax.faces.INTERPRET_EMPTY_STRING_SUBMITTED_VALUES_AS_NULL</param-name>
    <param-value>true</param-value>
</context-param>

In addition, if you're using Tomcat or a clone which utilizes Apache EL parser, add the following server startup VM argument as well to prevent it from treating Number values like primitives:

-Dorg.apache.el.parser.COERCE_TO_ZERO=false

In Eclipse, you could set it in server configuration (doubleclick the server entry in Servers view) in the Arguments tab of the Open launch configuration dialogue. In production, you could add it to the JAVA_OPTS environment variable.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM