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

com.cloud.platform.web.aop.annotation.MethodLogger Maven / Gradle / Ivy

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