@RequestMapping("/owners/{ownerId}")
@RequestMapping(value = "/pets", method = RequestMethod.GET, headers="Referer=http://www.ifeng.com/")
这都是可用的,你看下requestMapping源代码就知道了
老哥,你理解错了。你是没看标题吧。
我是自己写了一个注解,想要达到不写key的效果
@乔砂:
@Target(ElementType.METHOD)
public @interface Test {
String value() default "";
用value作为方法名
···
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface NonVlue {
}
···
就这样咯,直接判断是否存在注解就好了。
enmm。。
使用 value() 加上默认值就好了, 例如:
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface Register {
String value() default "";
}