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

io.github.nichetoolkit.mybatis.configure.MybatisContextAutoConfigure Maven / Gradle / Ivy

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