확장자 사라짐 썸네일형 리스트형 Spring - @PathVariable 점(.)이 사라진다? 스프링5에 존재하는 @PathVariable은 @GetMapping과 @PostMapping을 통해 URL맵핑을 이용할때 사용되는 어노테이션이다. 예를 들면 아래와 같은 코드가 있다고 하자. @RestController public class CustomController { @GetMapping("/example/{firstValue}/{secondValue}") public void example(@PathVariable("firstValue") String firstValue, @PathVariable("secondValue") String secondValue) { // ... } } 예를들어 접근 URL이 /example/hi.hi2/choi.123 이라고 치면 @PathVariable("fir.. 더보기 이전 1 다음