반응형
1 2 3 4 5 6 | @RequestMapping("/temp/{filename}") public ResponseEntity<byte[]> tempView(@PathVariable String filename) throws IOException { logger.info("Return Temp image data"); logger.info(filename); return null; } | cs |
위와같이 매핑한 후
localhost:8080/content/temp/testFile.jpg
이런 경로로 주소를 날렸더니 에러가 발생했다.
문제는 로그에 찍힌 filename
.jpg는 사라진채 testFile만 들어와지는 것이었다.
1 | @RequestMapping("/temp/{filename:.+}") | cs |
리퀘스트 매핑을 위와같이 바꿔주니 확장자까지 잘 들어옴을 확인할 수 있었다.
반응형
'Back-End > Spring framework' 카테고리의 다른 글
Spring Interceptor 사용 시 호출 Method 얻어오기 (0) | 2018.09.17 |
---|---|
Mybatis XML 쿼리 작성 시 비교 연산자 (<, >) 사용 (0) | 2018.09.17 |
Spring MVC image 반환 (0) | 2018.09.17 |
커스텀 HandlerMethodArgumentResolver 사용시 MultipartHttpServletRequest 얻는 방법 (0) | 2018.09.17 |
Spring MVC MultipartHttpServletRequest 사용시 한글 문제 (0) | 2018.09.17 |