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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T10:00:41+00:00 2026-06-08T10:00:41+00:00

I have an Java bean class Person containing 3 variables: name (String) age (String)

  • 0

I have an Java bean class Person containing 3 variables:

  • name (String)
  • age (String)
  • address (Object).

Address contains 3 variables:

  • street
  • door_no
  • city

I would like to have a utility which should print all variables in Person.

By this I mean it should print Person & also the Address object contained in it.

I could create a hashmap and put the variable names & values using reflection and print key/value UI in JSP but the issue is I have to apply reflection for Address to add variable/value in the hashmap.

Is there a utility available to do this?

  • 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-08T10:00:43+00:00Added an answer on June 8, 2026 at 10:00 am

    You could use ToStringBuilder from Apache Commons.

    From documentation:

    A typical invocation for this method would look like:

     public String toString() {
       return ToStringBuilder.reflectionToString(this);
     }
    

    More details:

    This class enables a good and consistent toString() to be built for
    any class or object. This class aims to simplify the process by:

    allowing field names handling all types consistently handling nulls
    consistently outputting arrays and multi-dimensional arrays enabling
    the detail level to be controlled for Objects and Collections handling
    class hierarchies To use this class write code as follows:

     public class Person {
       String name;
       int age;
       boolean smoker;
    
       ...
    
       public String toString() {
         return new ToStringBuilder(this).
           append("name", name).
           append("age", age).
           append("smoker", smoker).
           toString();
       }
     }
    

    Alternatively, there is a method that uses reflection to determine the
    fields to test. Because these fields are usually private, the method,
    reflectionToString, uses AccessibleObject.setAccessible to change the
    visibility of the fields. This will fail under a security manager,
    unless the appropriate permissions are set up correctly. It is also
    slower than testing explicitly.
    A typical invocation for this method would look like:

     public String toString() {
       return ToStringBuilder.reflectionToString(this);
     }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Java bean ala @XmlRootElement public class Bean { @XmlElementWrapper(name = ints)
Say you have the following java bean: public class MyBean { private List<String> names
Say I have the following simple java bean: class MyBean { private Date startDate;
Is there any way to obtain Object array of Java Bean fields? I have
I have Java bean class and I want to sort list of these beans
I have a session bean <managed-bean> <managed-bean-name>vdcAddBean</managed-bean-name> <managed-bean-class>com.cloud.appsportfolio.jsf.vdc.beans.VDCAddBean</managed-bean-class> <managed-bean-scope>session</managed-bean-scope> </managed-bean> Now, I am injecting
I have something like that: faces-config.xml <managed-bean> <managed-bean-name>aBean</managed-bean-name> <managed-bean-class>some.pack.Bean</managed-bean-class> <managed-bean-scope>session</managed-bean-scope> </managed-bean> I have a
If I have two variables: Object obj; String methodName = getName; Without knowing the
Support I have a Java Bean class that strictly holds instance fields: class College
(Java Spring WebApp) I have: public class PersonValidator implements Validator { private PersonDAO d;

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.