io.github.nichetoolkit.mybatis.configure.MybatisContextAutoConfigure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mybatis-toolkit-context Show documentation
Show all versions of mybatis-toolkit-context Show documentation
Mybatis toolkit context project for Spring Boot
The newest version!
package io.github.nichetoolkit.mybatis.configure;
import lombok.extern.slf4j.Slf4j;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
/**
* MybatisContextAutoConfigure
* The mybatis context auto configure class.
* @author Cyan ([email protected])
* @see lombok.extern.slf4j.Slf4j
* @see org.springframework.context.annotation.Configuration
* @see org.springframework.context.annotation.ComponentScan
* @since Jdk1.8
*/
@Slf4j
@Configuration
@ComponentScan(basePackages = {"io.github.nichetoolkit.mybatis"})
public class MybatisContextAutoConfigure {
/**
* MybatisContextAutoConfigure
* Instantiates a new mybatis context auto configure.
*/
public MybatisContextAutoConfigure() {
log.debug("The auto configuration for [mybatis-context] initiated");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy