본문 바로가기

Sanpomichi Project

template might not exist or might not be accessible by any of the configured Template Resolvers

반응형

Ajax를 통해 Request를 전송하고, @Controller로 받아서 return하는 구조에서 발생.

@Controller는 반환 값을 View (Template)으로 인식하기 때문에 String을 return한다고 하면 해당 이름의 템플릿을 찾게 된다.

당연히 없으므로 오류 발생

따라서 @RestController로 짜야 해결할 수 있다.

반응형