I have a bean, is there a way to list bean's all properties without list one by one?
Some beans overide the ToString() method which is handy. Howvere the beans which does not override this method?
|
I have a bean, is there a way to list bean's all properties without list one by one? Some beans overide the ToString() method which is handy. Howvere the beans which does not override this method? |
|||||
|
|
You can use reflection. Take declared fields from class, it they are private check if they have setters and getters (remember boolean getter is "isProperty") Code can look like this:
|
|||
|
|
|
see apache commons lang - ReflectionToStringBuilder |
|||
|
|
You could try with |
||||
|
|
|
You can use BeanIntrospection as follows:
Or you can go with reflection method using one of the following approaches:
|
|||||
|
|
|
You might be interested in BeanInfo, a class that may accompany a bean class, without that the bean class need to be altered. It is used in many GUI builders to show properties of a bean, but has its non-GUI uses too. |
|||
|
|