HTTP Status 406 -
type Status report
message
description The resource identified by this request is only capable of generating responses with characteristics not acceptable according to the request "accept" headers.
파일을 직접 다운받기 위해 Controller의 코드를 손보는 중에 다음과 같은 에러가 나옴.
이유는 RequestMapping에 produces=MediaType.APPLICATION_OCTET_STREAM_VALUE 때문인 듯.
@RequestMapping(value="/down/{path:.+}", produces=MediaType.APPLICATION_OCTET_STREAM_VALUE)
이 부분을 지워주니 다운로드가 잘 됨.
'코딩 > WEB' 카테고리의 다른 글
에러: Uncaught TypeError: Cannot use 'in' operator to search for '11869' in (0) | 2014.11.20 |
---|---|
예외: TransientDataAccessResourseException (1) | 2014.11.19 |
토비의 스프링3 applicationContext 관련 예외 (0) | 2014.11.16 |
에러: AssertionError: status expected 200 but was 406 (0) | 2014.11.14 |
에러: 406 not acceptable (0) | 2014.11.14 |