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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T11:20:40+00:00 2026-06-06T11:20:40+00:00

I have the following entity class : @Entity @Table(name = THE_TREE, catalog = ,

  • 0

I have the following entity class :

@Entity
@Table(name = "THE_TREE", catalog = "", schema = "dbo")
public class TheTree implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@Column(name = "ID", nullable = false)
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;

@Column(name = "NODE_NAME")
private String name;

@Column(name = "LEVEL")
private int level;

@OneToMany    
@JoinColumn(name="PARENTID")    
public List<TheTree > children = new LinkedList<TheTree >();

I would like to represent this into primefaces tree, but I cant get it right. The example given in primefaces website has static nodes with predefined depth, where I need nodes with unknown depth and to be filled from database. I have seen various posts here but nothing is clear to me. In this post it seems the author has asked the same question but the answer is not relative to the question somehow. Any solution would be appreciated.

  • 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-06-06T11:20:42+00:00Added an answer on June 6, 2026 at 11:20 am

    You have to create a recursive function to make the tree. This is how I would do it:

    @ManagedBean
    @ViewScoped
    public class TreeMBean {
    
        private TreeNode rootNode;
    
         @PostConstruct
         public void init() {
             TheTree root = new TheTree(); // instead get root object from database 
             rootNode = newNodeWithChildren(root, null);
         }
    
         /**
          *  recursive function that returns a new node with its children
         */
         public TreeNode newNodeWithChildren(TheTree ttParent, TreeNode parent){
              TreeNode newNode= new DefaultTreeNode(ttParent, parent);
              for (TheTree tt : ttParent.getChildren()){
                   TreeNode newNode2= newNodeWithChildren(tt, newNode);
              }
              return newNode;
         }
    
         public TreeNode getRootNode() {
             return rootNode;
         }
    
         public void setRootNode(TreeNode node) {
             rootNode = node;
         }
    
     }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following mapping: @Entity @Table(name = Prequalifications) public class Prequalification implements Serializable
Suppose I have the following entities: @Entity @Table(name = A) public class A implements
Suppose I have the following 2 entities: @Entity public class Person implements Serializable {
I have the following model classes: @Entity @Table(name = title) public final class Title
I have the following 2 entities: @Entity(name = Employee) @Table(name = EMPLOYEE) public class
I have the 2 following entities: @Entity @Table(name = brand) public class Brand {
I have the following inner class: @Entity @Table(name = SATTET0) public class SATTET0Key {
I'm using jpa and I have the following entity: @Entity @Table(name=favorites_folders) public class FavoritesFolder
I have the following property defined: @Entity @Table(name = person) public class Person extends
i have the following entity relationship: SideA: @Entity @Table(name = SideA) public class SideA

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.