1. pom.xml에 jackson라이브러리 추가
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.9</version>
</dependency>
2. RestController에 매핑부분 수정
@GetMapping(value="getMidArea.do",produces = "application/json; charset=utf8")
produces = "application/json; charset=utf8" <- 내용을 @RequestMapping에 추가해 주면 됨.
'error > Spring' 카테고리의 다른 글
java.lang.ClassNotFoundException 에러 해결 방법 (6) | 2020.10.07 |
---|---|
[스프링 Error] org.json.simple.JSONObject cannot be cast to net.sf.json.JSONObject (0) | 2019.10.11 |
스프링 JSON 406에러 (0) | 2019.06.24 |
파일 업로드시 Unable to process parts as no multi-part configuration has been provided 에러 (0) | 2019.06.21 |
스프링 Mybatis 에러 :: getCLOB not implemented for class oracle.jdbc.driver.T4CLongAccessor (0) | 2019.05.10 |