스프링 MVC 활용 - 요청 맵핑하기 6부 커스텀 애노테이션

Jinseok Lee·2022년 11월 2일
0

예제코드

@RequestMapping 어노테이션 커스텀 어노테이션 만들 수 있음

@Documented
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@RequestMapping(method = RequestMethod.GET, value = "/hello")
public @interface GetHelloMapping {
}

...

@GetHelloMapping
publid void getHelloMapping() {
}

메모

실무에서 쓸만한지는 잘 모르겠다 ㅎㅎ

profile
전 위메프, 이직준비중

0개의 댓글