com.cloud.platform.web.aop.annotation.MethodLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloud-web-spring-boot-starter Show documentation
Show all versions of cloud-web-spring-boot-starter Show documentation
project for cloud-web-spring-boot-starter
The newest version!
package com.cloud.platform.web.aop.annotation;
import com.cloud.platform.web.enums.LogTypeEnum;
import java.lang.annotation.*;
/**
* @Description: 打印请求和返回参数
* @Author: ZhouShuai
* @Date: 2021-06-27 16:58
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
public @interface MethodLogger {
LogTypeEnum logType() default LogTypeEnum.FULL;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy