Notice
Recent Posts
Recent Comments
Link
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- react #ref
- react #event
- react #props #state
- python #json
- oracle #
- DTO #VO
- kotlin #코틀린 #SpringDataJPA단점
- git #삭제
- PostgreSQL
- db #with절 #오라클 #oracle #쿼리 #query
- Django #장고 #에러해결방법 #templatetags
- 인텔리제이 #intelliJ #패키지생성 #package
- 데이터집계
- react #리액트 #JSX
- SQL
- Django #Static
- react #mini_project #study
- springboot #에러
- yarn #오류
- db #mysql #mariadb
- JPA #Springboot #java
- 인프런 #assertThat #오류
- flutter #flutter개념 #특징 #장단점
- regexp_substr함수
- django #db #오류
- MariaDB #Error
- JSP #Java #JQuery
- decode함수
- javascript #자바스크립트 #공백제거함수
- blockscope
Archives
- Today
- Total
감자의 개발공부 일지
[Springboot JPA] org.thymeleaf.exceptions.TemplateInputException: Error resolving template [/thymeleafEx/thymeleafEx01], template might not exist or might not be accessible by any of the configured Template Resolvers 본문
JAVA/Spring/Spring JPA
[Springboot JPA] org.thymeleaf.exceptions.TemplateInputException: Error resolving template [/thymeleafEx/thymeleafEx01], template might not exist or might not be accessible by any of the configured Template Resolvers
Elie_J 2024. 3. 12. 00:03반응형
코드작성 도중
org.thymeleaf.exceptions.TemplateInputException:
Error resolving template [/thymeleafEx/thymeleafEx01],
template might not exist or might not be accessible by
any of the configured Template Resolvers
다음 과 같은 오류가 발생했다! 😒
구글링 결과 원인은 다음과 같았다!
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>
바로 다음과 같이 pom.xml에 spring-boot-devtools 의존성을 추가해주지 않아서였다! 😒
의존성을 추가해준 뒤 꼭! Reload All Maven Projects를 클랙해서 의존성을 받아오길 바란다!
에러가 해결되었다! 얏호! 😍
반응형