Examples of AutoTableBindPlugin


Examples of com.jfinal.ext.plugin.tablebind.AutoTableBindPlugin

    @Override
    public void configPlugin(Plugins me) {
        DruidPlugin druidPlugin = new DruidPlugin("jdbc:mysql://127.0.0.1/jfinal_demo", "root", "root");

        AutoTableBindPlugin atbp = new AutoTableBindPlugin(druidPlugin).autoScan(false);
        me.add(druidPlugin);
        me.add(atbp);
    }
View Full Code Here

Examples of net.loyin.jFinal.plugin.AutoTableBindPlugin

    //数据库表与bean映射
    arp.addMapping("acategory", Acategory.class)// 映射acategory 表到 Acategory模型
    */
   
    //添加自动绑定model与表插件
    AutoTableBindPlugin autoTableBindPlugin = new AutoTableBindPlugin(druidPlugin, TableNameStyle.LOWER);
    autoTableBindPlugin.setShowSql(true);
    autoTableBindPlugin.setContainerFactory(new CaseInsensitiveContainerFactory());
    me.add(autoTableBindPlugin);
    me.add(new SqlInXmlPlugin());
   
//    me.add(new SpringPlugin());//添加spring插件自动从WEB-INF下寻找application.xml
  }
View Full Code Here

Examples of net.loyin.jFinal.plugin.AutoTableBindPlugin

    //数据库表与bean映射
    arp.addMapping("acategory", Acategory.class)// 映射acategory 表到 Acategory模型
    */
   
    //添加自动绑定model与表插件
    AutoTableBindPlugin autoTableBindPlugin = new AutoTableBindPlugin(druidPlugin, TableNameStyle.LOWER);
    autoTableBindPlugin.setShowSql(true);
    me.add(autoTableBindPlugin);
    me.add(new SqlInXmlPlugin());
   
//    me.add(new SpringPlugin());//添加spring插件自动从WEB-INF下寻找application.xml
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.