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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T03:00:19+00:00 2026-05-31T03:00:19+00:00

I want to display java arraylist into JSF page. I generated arraylist from database.

  • 0

I want to display java arraylist into JSF page. I generated arraylist from database. Now I want to display the list into JSF page by calling the list elements index by index number. Is it possible to pass a parameter to bean method from an EL expression in JSF page directly and display it?

  • 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-31T03:00:20+00:00Added an answer on May 31, 2026 at 3:00 am

    You can access a list element by a specific index using the brace notation [].

    @ManagedBean
    @RequestScoped
    public class Bean {
    
        private List<String> list;
    
        @PostConstruct
        public void init() {
            list = Arrays.asList("one", "two", "three");
        }
    
        public List<String> getList() {
            return list;
        }
    
    }
    
    #{bean.list[0]}
    <br />
    #{bean.list[1]}
    <br />
    #{bean.list[2]}
    

    As to parameter passing, surely it’s possible. EL 2.2 (or JBoss EL when you’re still on EL 2.1) supports calling bean methods with arguments.

    #{bean.doSomething(foo, bar)}
    

    See also:

    • Our EL wiki page
    • Invoke direct methods or methods with arguments / variables / parameters in EL

    I however wonder if it isn’t easier to just use a component which iterates over all elements of the list, such as <ui:repeat> or <h:dataTable>, so that you don’t need to know the size beforehand nor to get every individual item by index. E.g.

    <ui:repeat value="#{bean.list}" var="item">
        #{item}<br/>
    </ui:repeat>
    

    or

    <h:dataTable value="#{bean.list}" var="item">
        <h:column>#{item}</h:column>
    </h:dataTable>
    

    See also:

    • How iterate over List<T> and render each item in JSF Facelets
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to display my arraylist results by using custom list view. for now
On one of our Java application screens, we want to display data loaded from
I have made a java swing GUI. Now I want to display a static
I want display data from database in Listbox...Here is my code, It is not
I want to display multiple objects in the north part of a java window.
I have a java applet for uploading files to server. I want to display
I want to open and display an existing Microsoft PowerPoint presentation in a Java
i want display 1 record from colums zodys , I'm programint in C# I
i get a list from my java code and I would like to create
I want to display an image in my Java application. I found a code

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.