Error org.springframework.web.util.NestedServletException: Request processing failed;

Mixer·2022년 8월 30일
0
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: Error resolving template [articles/index], template might not exist or might not be accessible by any of the configured Template Resolvers

Spring Boot으로 테스트코드를 진행하는중 해당 오류를 만났는데
일단 해결법은

@RequestMapping
@RestController // Controller -> RestController로 변경
public class ArticleController {
	...
}
application.yaml

spring:
  thymeleaf:
    prefix: classpath:/templates/

이 두가지를 통해서 문제가 해결됐지만 여전히 문제 많이 남아 있어서
프로젝트 기간에 많은 오류를 만나서 포스팅하게 될거같다

profile
Minthug'life

0개의 댓글