[Problem&Solve]
[Spring]Ajax 사용시 리턴값 에러
regularity
2022. 6. 25. 15:02
728x90
1. JSP에서 Ajax로 데이터를 전송 후 컨트롤러로 부터 데이터를 받을 때 발생한 에러
2. 값은 컨트롤러까지 잘 넘어 오지만 컨트롤러에서 -> JSP(Ajax) 로 반환할때 에러 발생
3. 원인 -> pom.xml 에서 Ajax 라이브러리를 추가해주지 않아서
4. pom.xml에 라이브러리 추가
<!-- Ajax를 위한 Jackson Library -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.4</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
<version>2.9.4</version>
</dependency>
5. 정상 작동
728x90