All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.quanter.shield.mybatis.pagehelper.ExPageAutoDialect Maven / Gradle / Ivy

Go to download

扩展mybatis的能力,包括公共分页接口,实现对cache,sqlserver数据库的分页

There is a newer version: 1.4.1
Show newest version
package net.quanter.shield.mybatis.pagehelper;

import com.github.pagehelper.page.PageAutoDialect;

/**
 * 支持cache和sqlserver2000的数据库
 *
 * @author 王老实
 * @since 1.3.12.RELEASE
 */
public class ExPageAutoDialect extends PageAutoDialect {
    static {
        registerDialectAlias("cache",CacheDialect.class);
        registerDialectAlias("sqlserver2000",SqlServer2000Dialect.class);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy