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

cn.mybatisboost.core.SqlProvider Maven / Gradle / Ivy

The newest version!
package cn.mybatisboost.core;

import org.apache.ibatis.mapping.BoundSql;
import org.apache.ibatis.mapping.MappedStatement;
import org.apache.ibatis.reflection.MetaObject;

import java.sql.Connection;

public interface SqlProvider {

    String MYBATIS_BOOST = "#MYBATIS_BOOST#";

    default String reserved() {
        return MYBATIS_BOOST;
    }

    void replace(Connection connection, MetaObject metaObject, MappedStatement mappedStatement, BoundSql boundSql);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy