Spring Boot:URL prefix

aiden·2023년 11월 30일
0

Backend

목록 보기
10/16
post-custom-banner

URL 프리픽스

Conttoller에서 URL Mapping 시 프리픽스가 모두 동일하게 시작하는 경우 클래스명 위에 @RequestMapping("/공통부분") 어노테이션을 추가하고, 메서드 단위에서는 공통부분을 생략한 그 뒷 부분만을 적으면 된다.

컨트롤러{
	@GetMapping("/question/list")
    메서드{
    
    }
	@GetMapping(value = "/question/detail/{id}")
    메서드{
    
    }
}

공통부분 @RequestMapping 이용

@RequestMapping("/question")
컨트롤러{
	@GetMapping("/list")
    메서드{
    
    }
	@GetMapping(value = "/detail/{id}")
    메서드{
    
    }
}
profile
파인애플 좋아하세요?

0개의 댓글