Is there a way to specify the String name of a property in a particular bean and return the class that the getter corresponds to?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can use the java.beans.Introspector class to obtain information about a given bean. You can't query the BeanInfo for a specific property, but you can loop through them:
|
|||||||
|
|
Found it... org.apache.commons.beanutils.PropertyUtils.getPropertyType(Object bean, String name) |
|||
|
|