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
- address
- Kakao
- 코딩온라인
- taskkill
- Machine Learning
- 마크다운
- 파이콘
- 플젝후체크
- 카우치코딩 #couchcoding #6주포트폴리오 #6주협업프로젝트v
- Technical Writing
- gitbash
- 자바파이썬
- expression statement is not assignment or call html
- 카우치코딩 #couchcoding #6주포트폴리오 #6주협업프로젝트
- 비동기
- 파이썬
- Morphological analysis #Corpus
- khaiii
- #스파르타코딩클럽후기 #내일배움캠프후기
- terminate
- github markdown
- Anaconda
- 서버사이드렌더링
- SSR
- 모바일웹스킨
- PID
- 클라이언트사이드렌더링
- 출처: 자바의 신 8장
- github
- 필사
Archives
- Today
- Total
개발 일기
classpath:/static/ 경로 설정 본문
2021-11-27 08:36:43.827 ERROR 15476 --- [nio-8080-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: Error resolving template [index], template might not exist or might not be accessible by any of the configured Template Resolvers] with root cause
application properties 설정을 바꿔보다가 발생한 에러.
어제도 비슷한 에러가 이썼는데, 이렇게 might not exist or might not be accessible 이라는 메시지가 나올때는 경로를 확인해보자.
index.html 은 static 폴더 안에 있는데, application properties에 classpath 경로설정이 누락되었다. 아래와 같이 추가해주자.
spring.h2.console.enabled=true
spring.datasource.url=jdbc:h2:mem:testdb
#추가
spring.thymeleaf.prefix=classpath:/static/
출처: 김영한님 답변.
+ 콘솔에서 jar 파일 실행 후 url 을 호출해서 작동이 안된다면, 소스가 아닌 인텔리제이가 문제다.
'Java&Spring > Java' 카테고리의 다른 글
인터페이스란? (0) | 2021.12.12 |
---|---|
추상클래스란? (0) | 2021.12.12 |
인텔리제이 Application properties 파일 (0) | 2021.11.26 |
TIL - 스프링 프로젝트 에러 일기 (1) | 2021.11.25 |
Java의 생성자 작용 원리 (0) | 2021.11.24 |
Comments