Package com.github.miemiedev.mybatis.paginator.support

Examples of com.github.miemiedev.mybatis.paginator.support.PropertiesHelper


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

  public void setProperties(Properties properties) {
        PropertiesHelper propertiesHelper = new PropertiesHelper(properties);
    String dialectClass = propertiesHelper.getRequiredString("dialectClass");
    setDialectClass(dialectClass);

        setAsyncTotalCount(propertiesHelper.getBoolean("asyncTotalCount",false));

        setPoolMaxSize(propertiesHelper.getInt("poolMaxSize",0));

  }
View Full Code Here

TOP

Related Classes of com.github.miemiedev.mybatis.paginator.support.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.