cn.structure.starter.log.anno.EnableWebAopLog Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of structure-log-starter Show documentation
Show all versions of structure-log-starter Show documentation
structure-log-starter 用于日志输出
The newest version!
package cn.structure.starter.log.anno;
import cn.structure.starter.log.aop.ParamLogsAspect;
import cn.structure.starter.log.config.EnableWebAopConfig;
import org.springframework.context.annotation.Import;
import java.lang.annotation.*;
/**
*
* 开启webAop的log需要配置路径
*
*
* @author chuck
* @version 1.0.1
* @since 2020/6/3 12:05
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Documented
@Import({EnableWebAopConfig.class, ParamLogsAspect.class})
public @interface EnableWebAopLog {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy