Package com.jfinal.ext.plugin.tablebind

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

TOP

Related Classes of com.jfinal.ext.plugin.tablebind.AutoTableBindPlugin

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.