org.iartisan.runtime.web.annotation.EnableWebLog Maven / Gradle / Ivy
The newest version!
package org.iartisan.runtime.web.annotation;
import java.lang.annotation.*;
/**
* 启动webLog 日志
*
* @author King
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface EnableWebLog {
/**
* 方法说明
*
* @return
*/
String value() default "";
}