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

com.jdkhome.blzo.ex.basic.aop.api.Api Maven / Gradle / Ivy

There is a newer version: 0.5.0.3.RELEASE
Show newest version
package com.jdkhome.blzo.ex.basic.aop.api;

import java.lang.annotation.*;

/**
 * Created by jdk on 17/4/20.
 * Controller层的日志
 */
@Documented
@Inherited
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Api {

    /**
     * 接口名称
     *
     * @return
     */
    String value();

    /**
     * 是否需要打印日志
     *
     * @return
     */
    boolean log() default true;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy