Sabtu, 19 April 2014

Java PropertyUtils Example - getting and setting properties by name




PropertyUtils class of Apache commons beanutils library is very useful and provides you ability to modify properties of Java object at runtime. PropertyUtils enables you to write highly configurable code where you can provide name of bean properties and there values from configuration rather than coded in Java program and Apache PropertyUtils can set those properties on Java object at runtime. One popular example of how powerful PropertyUtils can be is display tag which provides rich tabular display for JSP pages, it uses PropertyUtils class to get values of object at runtime and than display it. You can setup properties as column and only selected columns will be displayed. Even larger web framework like Struts and Spring also uses Apache commons beanutils library for getting and setting java properties by name.





PropertyUtils is based on Java reflection but provides convenient method to operate on Java object at runtime. By using PropertyUtils you can get map of all Object properties which enables you to change them at runtime by values coming from all the places like web request, database or configuration files. In this Java tutorial we will example of how to get and set properties of java object using PropertyUtils class at runtime.





This article is in continuation of my earlier post on open source library like How to limit number of user session in web application using Spring Security and How to perform LDAP authentication on windows Active directory using Spring Security. If you haven’t read them already you may find them useful and interesting.






Java Program to get object properties at runtime



How to change properties of object at runtime PropertyUtils Apache commons ExampleHere is a simple Java program which shows how to use PropertyUtils class to change object properties or to get Object and its properties at runtime. Remember we don’t know anything about Object on compile time. On runtime Object is provided to program along with name of property to retrieve or modify:






import org.apache.commons.beanutils.PropertyUtils;



public class PropertyUtilsTest {



    public static void main(String args[]) {



        try{

        MobilePhone flexiColor = new MobilePhone();

        //here color and blue strings can come from variety or sources

        //e.g. configuration files, database, any upstream system or via HTTP Request

        PropertyUtils.setProperty(flexiColor, "color", "blue");

        String value = (String) PropertyUtils.getProperty(flexiColor, "color");

        System.out.println("PropertyUtils Example property value: " + value);

        }catch(Exception ex){

            ex.printStackTrace();

        }



    }



    public static class MobilePhone {



        private String brand;

        private String color;



        public String getBrand() {

            return brand;

        }



        public void setBrand(String brand) {

            this.brand = brand;

        }



        public String getColor() {

            return color;

        }



        public void setColor(String color) {

            this.color = color;

        }

    }

}





Output:


PropertyUtils Example property value: blue









Benefits of using Apache commons PropertyUtils:



PropertyUtils provides lot of flexibility while writing program though that comes with the cost of reflection; here are some of important benefits of using Apache commons PropertyUtils I can think of:





1) You can get any property value at runtime without having coded for it e.g. bean.getOrder() can be replaced by


PropertyUtils.getProperty(bean, order) where bean and order is runtime value and can change.





2) Similarly you can set any object property at runtime e.g. bean.setOrder(order) can be replaced by






PropertyUtils.setProperty(bean, order, new Order())






3) Apache beanUtils enables you to write highly configurable code.







Errors and Exception while using PropertyUtils



If you try to set a property and getting "Exception in thread "main" java.lang.NoSuchMethodException: Property 'color' has no setter method" like below:





Exception in thread "main" java.lang.NoSuchMethodException: Property 'color' has no setter method at org.apache.commons.beanutils.PropertyUtilsBean.setSimpleProperty(PropertyUtilsBean.java:1746) 

at org.apache.commons.beanutils.PropertyUtilsBean.setNestedProperty(PropertyUtilsBean.java:1648)








There could be different reasons for this exceptions e.g.





1) Bean class whose property you are setting is not public. Yes you get this Exception even if class is accessible like Inner class but not public rather it’s private, default or protected.





2) There is no setter method for that property.





3) Setter method for that property is private.





You will also get "java.lang.IllegalArgumentException: argument type mismatch" like below if you are passing incorrect type for argument or your argument type is not convertible on what method is expecting e.g. if property is of type int and you are passing String.





java.lang.IllegalArgumentException: argument type mismatch


        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)








Dependency:


commons-beanutils.jar


commons-logging.jar


commons-collections.jar





In order to use PropertyUtils class you need to include commons-beanutils.jar in your Java Classpath. and since commons-beanutils.jar also has dependency on commons-logging.jar you need to include that as well. If you are using Maven for building your project or maintaining dependency you can include following dependency.





Maven dependency for apache commons beanutils





>

        >commons-beanutils>

        >commons-beanutils>

        >1.8.2>

>











That’s all on How to use PropertyUtils from Apache commons-beanutils.jar to get and set object properties on runtime.  Apart from PropertyUtils beanutils also contains several other utility for dealing with beans in Java application.





Other Java Programming tutorials you may like


















Reference


http://commons.apache.org/beanutils/api/org/apache/commons/beanutils/PropertyUtils.html
























Source:http://javarevisited.blogspot.com/2012/04/java-propertyutils-example-getting-and.html

Tidak ada komentar:

Posting Komentar