com.baomidou.mybatisplus.spring.boot.starter.ConfigurationCustomizer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mybatis-plus-boot-starter Show documentation
Show all versions of mybatis-plus-boot-starter Show documentation
An enhanced toolkit of Mybatis to simplify development.
package com.baomidou.mybatisplus.spring.boot.starter;
import org.apache.ibatis.session.Configuration;
/**
* Callback interface that can be customized a {@link Configuration} object generated on auto-configuration.
*
* @author Kazuki Shimizu
* @since 1.2.1
*/
public interface ConfigurationCustomizer {
/**
* Customize the given a {@link Configuration} object.
*
* @param configuration the configuration object to customize
*/
void customize(Configuration configuration);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy