java.lang.Object
com.gsitm.ustra.java.data.mybatis.pagination.support.PropertiesHelper

public class PropertiesHelper extends Object
 public class ConnectionUtils {
     static Properties properties = new Properties();
     // ... do load properties

     // delegate to properties
           static PropertiesHelper props = new PropertiesHelper(properties);
     public static Connection getConnection() {
                // use getRequiredProperty()
                DriverManager.getConnection(props.getRequiredString("jdbc.url"));
     }
 }
 new PropertiesHelper(properties,PropertiesHelper.SYSTEM_PROPERTIES_MODE_OVERRIDE)