일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- PEPE
- 유튜브 성공하는법
- 버튜버 목소리 만들기
- PBR
- 페페
- 노베이스 정처기
- 스파이닝 탑
- 티스토리챌린지
- 마인드 ㅊㅇ
- DevOps
- pepe the frog
- linux
- 구동의 아침
- PER
- 이클립스
- 인간관계론
- 오블완
- 도커
- 슬픈 개구리
- 유튜브 기초강의
- 마인드 차이
- rsi 보조지표
- 정처기
- 노베이스 정처기 공부법
- 노베이스 정보처리기사 합격법
- 가장빨리부자되는법
- 유튜브
- voice changer
- docker
- 정보처리기사
Archives
- Today
- Total
실패는 성공을 위한 밑거름
[스프링] 스프링 프레임워크에서 406에러 본문
내가 작성한 ajax로직에서 406에러가 난다.
※406에러 : 서버가 요청의 응답(response)을 보낼때 반환할수있는 포맷이 아닐경우 표시됨
문제 해결법 :
1. 컨트롤러에서 응답에 관한 조건(annotation,json타입)을 정확하게 사용했는지 확인.
//ajax에 응답을 하기 위해선 ResponseBody 어노테이션을 명시
@ResponseBody
@RequestMapping(value = "jsonResponse")
public ResponseEntity<?> request2json(@RequestParam(required = false) Map<String, Object> commandMap ,HttpSession session)
throws UnsupportedEncodingException {
boolean result = true;
HashMap<String, Object> resultMap = new HashMap<>();
resultMap.put("result", true);
resultMap.put("message", "be happy day~");
//ResponseData로 json형태를 만들어줌
return new ResponseEntity<>(new ResponseData<HashMap<String,Object>>(result, resultMap), HttpStatus.OK);
}
2. servlet.xml 설정에서 json 형태의 response설정을 할수있는지 확인
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="messageConverters">
<list>
<bean class="org.springframework.http.converter.StringHttpMessageConverter">
<property name="supportedMediaTypes">
<list>
<value>text/html;charset=UTF-8</value>
</list>
</property>
</bean>
<bean class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter"/>
<!-- 나의경우 위의 jackson bean객체가 없어서 406에러가 표시됐다. -->
</list>
</property>
</bean>
위의 servlet.xml에서 text/html은 문자열만 response된다는뜻임
그래서 jackson의 bean객체를 추가했다.
결과 :
참고가된 블로그1 : https://cheershennah.tistory.com/179
참고가된 블로그2 : https://velog.io/@0_sujeong/error-spring-ajax-return-406%EC%97%90%EB%9F%AC
'devops > spring-boot' 카테고리의 다른 글
[스프링] 어노테이션 정리 (0) | 2023.07.04 |
---|---|
[스프링부트] gradle은 의존관계가 있는 라이브러리를 함께 다운로드한다. (0) | 2023.04.20 |