● 오류 내용Error resolving template [jsonView], template might not exist or might not be accessible by any of the configured Template ResolversModelAndView mv = new ModelAndView("jsonView");Controller 리턴 값으로 ModelAndView("jsonView") 사용할 때 해줘야 하는 설정이 있습니다.아래 두가지 중에 한가지만 설정하시면 됩니다. 현재 사용하는 프레임워크 설정에 맞춰서 추가해 주세요 1. @Configuration@Configuration란? Spring 에서 Bean 등록할 수 있는 어노테이션 중 하나 입니다.@Configuration 어노테..