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

in.hocg.boot.mybatis.plus.extensions.userconfig.autoconfiguration.UserConfigMybatisPlusExtAutoConfiguration Maven / Gradle / Ivy

There is a newer version: 1.0.63
Show newest version
package in.hocg.boot.mybatis.plus.extensions.userconfig.autoconfiguration;

import in.hocg.boot.mybatis.plus.extensions.userconfig.UserConfigMpe;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Lazy;

/**
 * Created by hocgin on 2022/3/24
 * email: [email protected]
 *
 * @author hocgin
 */
@Slf4j
@Configuration
@ConditionalOnProperty(prefix = UserConfigMybatisPlusExtProperties.PREFIX, name = "enabled", matchIfMissing = true)
@EnableConfigurationProperties(UserConfigMybatisPlusExtProperties.class)
@ComponentScan(UserConfigMpe.PACKAGE)
@RequiredArgsConstructor(onConstructor = @__(@Lazy))
public class UserConfigMybatisPlusExtAutoConfiguration {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy