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

com.github.hugh.aop.Aspects Maven / Gradle / Ivy

The newest version!
package com.github.hugh.aop;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * aop拦截方法注解
 *
 * @author hugh
 * @since 1.5.5
 */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Aspects {

    /**
     * 名称
     *
     * @return String
     */
    String name() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy