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

cn.yangjunda.annotation.JuandaRequestMapping 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:16:05
 * 
 */  
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface JuandaRequestMapping {

	/**
	 * 表示访问该方法的url
	 * @return
	 */
	String value() default "";

	RequestMethod[] method() default {};
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy