cn.yangjunda.annotation.JuandaController Maven / Gradle / Ivy
package cn.yangjunda.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @Description controller注册的注解
* @author juanda
* @date 2017年8月30日下午5:12:55
*
*/
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface JuandaController {
/**
* 表示给controller注册别名
* @return
*/
String value() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy