@RequestMapping 어노테이션 커스텀 어노테이션 만들 수 있음
@Documented
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@RequestMapping(method = RequestMethod.GET, value = "/hello")
public @interface GetHelloMapping {
}
...
@GetHelloMapping
publid void getHelloMapping() {
}
실무에서 쓸만한지는 잘 모르겠다 ㅎㅎ