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

cn.bootx.platform.starter.audit.log.AuditLogAutoConfiguration Maven / Gradle / Ivy

There is a newer version: 1.3.6.2
Show newest version
package cn.bootx.platform.starter.audit.log;

import org.apache.ibatis.annotations.Mapper;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.autoconfigure.AutoConfiguration;
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.data.mongodb.repository.config.EnableMongoRepositories;

/**
 * 审计模块
 *
 * @author xxm
 * @since 2021/11/8
 */
@ComponentScan
@ConfigurationPropertiesScan
@EnableMongoRepositories
@AutoConfiguration
@MapperScan(annotationClass = Mapper.class)
public class AuditLogAutoConfiguration {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy