반응형
json retrun
-
Spring Boot | return jsonView 사용, JSON 데이터로 응답▼ Backend/스프링 (Spring) 2021. 8. 4. 12:15
org.thymeleaf.exceptions.TemplateInputException: Error resolving template [jsonView] template might not exist or might not be accessible by any of the configured Template Resolvers 클라이언트에서 요청한 데이터를 JSON(JavaScript Object Notation) 형식으로 리턴할 때 Model 또는 ModelAndView에 데이터를 담아 jsonView로 설정했지만 에러 발생 Case1, Case2와 같이 데이터를 jsonView로 리턴 중일 때 발생 //Case1 @PostMapping("/login/action.ajax") public String log..