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

cn.structure.starter.log.anno.EnableWebAopLog Maven / Gradle / Ivy

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 - 2024 Weber Informatics LLC | Privacy Policy