Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 599251
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T16:28:40+00:00 2026-05-13T16:28:40+00:00

I have a JSF 2.0 application on Tomcat with many <h:inputText> fields to input

  • 0

I have a JSF 2.0 application on Tomcat with many <h:inputText> fields to input data in my database. Some fields are not required.

<h:inputText value="#{registerBean.user.phoneNumber}" id="phoneNumber">
    <f:validateLength maximum="20" />
</h:inputText>

When the user leave this field empty JSF sets empty string "" instead of null.

How can I fix this behavior without checking every String with

if (string.equals("")) { string = null; }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T16:28:40+00:00Added an answer on May 13, 2026 at 4:28 pm

    You can configure JSF 2.x to interpret empty submitted values as null by the following context-param in web.xml (which has a pretty long name, that’ll also be why I couldn’t recall it 😉 ):

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

    For reference and for ones who are interested, in JSF 1.2 (and thus not 1.1 or older because it’s by design not possible to have a Converter for java.lang.String) this is workaroundable with the following Converter:

    public class EmptyToNullStringConverter implements Converter {
    
        public Object getAsObject(FacesContext facesContext, UIComponent component, String submittedValue) {
            if (submittedValue == null || submittedValue.isEmpty()) {
                if (component instanceof EditableValueHolder) {
                    ((EditableValueHolder) component).setSubmittedValue(null);
                }
    
                return null;
            }
    
            return submittedValue;
        }
    
        public String getAsString(FacesContext facesContext, UIComponent component, Object modelValue) {
            return (modelValue == null) ? "" : modelValue.toString();
        }
    
    }
    

    …which needs to be registered in faces-config.xml as follows:

    <converter>
        <converter-for-class>java.lang.String</converter-for-class>
        <converter-class>com.example.EmptyToNullStringConverter</converter-class>
    </converter>
    

    In case you’re not on Java 6 yet, replace submittedValue.empty() by submittedValue.length() == 0.

    See also

    • The empty String madness
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a small JSF application where the user is required to enter some
In a JSF 2 application, which is developed on tomcat, I have the following
I am working on project in JSF, using Tomcat 7. The application will have
i have a JSF web application. I use Beans as Spring Beans (not JSF
I have developed a JSF 2.0 application and tested it on Apache Tomcat 6.0.
i have developed an application using jsf 1.2. it worked fine with apache tomcat
i have a jsf application running on tomcat 6.0 and somewhere in the app
I have a JSF 2 application which creates some SVG content. How can i
Basically i have a enterprise jsf application which shows some services to the user.
I have developed a JSF application and I am running into some funny behavior

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.