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 6157549
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T20:48:19+00:00 2026-05-23T20:48:19+00:00

I want the user to enter one or more names to the JSF’s inputText

  • 0

I want the user to enter one or more names to the JSF’s inputText components.
So I’m thinking of a managed bean like this:

public class MyBean {

    private String[] names;

    public String[] getNames() {
        return names;
    }

    public void setNames(String[] names) {
        this.names = names;
    }
}

But, how do I map the JSF’s inputText components to this array property?

  • 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-23T20:48:20+00:00Added an answer on May 23, 2026 at 8:48 pm

    First, you need to ensure that the array or collection is preinitialized in the bean, i.e. that it is never null, for the simple reason because JSF won’t do that for you as it doesn’t know beforehand how many items you want.

    E.g. in @PostConstruct.

    @PostConstruct
    public void init() {
        names = new String[3];
    }
    

    Then, you can either just access them by an hardcoded index

    <h:inputText value="#{myBean.names[0]}" />
    <h:inputText value="#{myBean.names[1]}" />
    <h:inputText value="#{myBean.names[2]}" />
    

    or use <ui:repeat> with a varStatus to access them by a dynamic index

    <ui:repeat value="#{myBean.names}" varStatus="loop">
        <h:inputText value="#{myBean.names[loop.index]}" />
    </ui:repeat>
    

    Do not use the var attribute like

    <ui:repeat value="#{myBean.names}" var="name">
        <h:inputText value="#{name}" />
    </ui:repeat>
    

    It won’t work when you submit the form, because the immutable String class literally doesn’t have a setter for the value (the getter is basically the toString() method implied by EL).

    See also:

    • Using <ui:repeat><h:inputText> on a List<String> doesn't update model values
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a form where I want a user to enter one or more
This is what I want : Let the user enter as many numbers as
I want to force the user to enter atleast one tag in tags field.
Why this code allows user do not enter any text? AFAIK + means One
I have textarea in my site(link shortening site) i want to user enter some
I'm building a GWT Application. But i dont want user to enter any html
I want the user to enter a MAC address in the format : aa:bb:cc:dd:ee:ff
Basically, I do not want the user to enter '0' (zero) as the first
I want to allow user to enter only english alphabets and characters. How can
In my view I want to add the text user enter in a textarea

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.