개발 & 데이터베이스/Spring

Unknown return value type: java.lang.Integer 에러

K.두부 2024. 12. 19. 14:14
반응형

ajax 호출할 때 발생하는 에러

 

@PostMapping(value = "/TEST/select"}, produces = {"application/json"})
public int selectKey() {
  return this.TESTService.selectKey();
}

 

 

@ResponseBody를 추가 안해서 발생하는 에러

@ResponseBody: 리턴되는 값은 View를 통해서 출력되지 않고 HTTP ResponseBody에 직접 쓰여짐.

@PostMapping(value = "/TEST/select"}, produces = {"application/json"})
public int selectKey() {
  return this.TESTService.selectKey();
}

 

반응형