Thymeleaf를 사용하고 Javascript로 Ajax 통신 중 다음과 같은 에러가 발생했다. template might not exist or might not be accessible by any of the configured template resolvers ... $.ajax({ method:'POST', url:'/getLocationData', dataType:'json', success:function (data){ console.log("data:::"+data); } }) @Controller public class LocationController { @Autowired private LocationService locationService; @PostMapping("/getLoc..