Bean Map
Apache Commons BeanUtils is a java library useful for accessing bean properties and methods.
It provides introspection capabilities to view and manipulate the properties and operations provided
by the given class.
This requires the libraries commons-beanutils-1.8.3.jar,
commons-beanutils-bean-collections-1.8.3.jar, commons-beanutils-core-1.8.3.jar,
commons-collections-3.2.1.jar, commons-logging.jar to be in classpath.
The following example shows using BeanMap class
which provides a map view for the properties of given object.
package com.bethecoder.tutorials.commons_beanutils.common;
public class Student {
private String name;
private int age;
private String hobby;
public Student () {
}
public Student ( String name, int age, String hobby ) {
super () ;
this .name = name;
this .age = age;
this .hobby = hobby;
}
public String getName () {
return name;
}
public void setName ( String name ) {
this .name = name;
}
public int getAge () {
return age;
}
public void setAge ( int age ) {
this .age = age;
}
public String getHobby () {
return hobby;
}
public void setHobby ( String hobby ) {
this .hobby = hobby;
}
public String toString () {
return "Student[name = " + name + ", age = " + age + ", hobby = " + hobby + "]" ;
}
}
package com.bethecoder.tutorials.commons_beanutils;
import java.lang.reflect.InvocationTargetException;
import org.apache.commons.beanutils.BeanMap;
import com.bethecoder.tutorials.commons_beanutils.common.Student;
public class BeanMapTest {
/**
* @param args
* @throws InvocationTargetException
* @throws IllegalAccessException
*/
public static void main ( String [] args )
throws IllegalAccessException, InvocationTargetException {
Student std = new Student ( "Sriram" , 2 , "Chess" ) ;
BeanMap beanMap = new BeanMap ( std ) ;
//Query bean map
System.out.println ( "Name : " + beanMap.get ( "name" )) ;
System.out.println ( "Age : " + beanMap.get ( "age" )) ;
System.out.println ( "Hobby : " + beanMap.get ( "hobby" )) ;
//Update bean map
beanMap.put ( "age" , 3 ) ;
beanMap.put ( "hobby" , "Cricket" ) ;
//Extract updated object
std = ( Student ) beanMap.getBean () ;
System.out.println ( std ) ;
}
}
It gives the following output,
Name : Sriram
Age : 2
Hobby : Chess
Student[name = Sriram, age = 3, hobby = Cricket]