Package cn.org.rapid_framework.util

Examples of cn.org.rapid_framework.util.PropertiesHelper


  public Object plugin(Object target) {
    return Plugin.wrap(target, this);
  }

  public void setProperties(Properties properties) {
    String dialectClass = new PropertiesHelper(properties).getRequiredString("dialectClass");
    try {
      dialect = (Dialect)Class.forName(dialectClass).newInstance();
    } catch (Exception e) {
      throw new RuntimeException("cannot create dialect instance by dialectClass:"+dialectClass,e);
    }
View Full Code Here


  public Object plugin(Object target) {
    return Plugin.wrap(target, this);
  }

  public void setProperties(Properties properties) {
    String dialectClass = new PropertiesHelper(properties).getRequiredString("dialectClass");
    try {
      dialect = (Dialect)Class.forName(dialectClass).newInstance();
    } catch (Exception e) {
      throw new RuntimeException("cannot create dialect instance by dialectClass:"+dialectClass,e);
    }
View Full Code Here

TOP

Related Classes of cn.org.rapid_framework.util.PropertiesHelper

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.