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
'[Problem&Solve]' 카테고리의 다른 글
[IntelliJ]Cannot find declaration to go to_파일간 경로 이동 에러 (1) | 2022.08.18 |
---|---|
[Oracle]오라클 접속에러_실패 -테스트 실패: IO 오류: The Network Adapter could not establish the connection (0) | 2022.08.08 |
[Spring]pom.xml 메이븐에러 (0) | 2022.06.23 |
[HTML]Form태그 (0) | 2022.06.10 |
[Spring] 404에러_href -> url경로 중복 (0) | 2022.05.28 |
댓글