250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Eclipse
- Python
- MSSQL
- Thymeleaf
- Docker
- 오픈소스
- 문서
- AJAX
- ubuntu
- error
- Tomcat
- jpa
- SpringBoot
- spring
- PostgreSQL
- Spring Boot
- MySQL
- 설정
- Exception
- JavaScript
- Source
- IntelliJ
- Core Java
- maven
- oracle
- STS
- Open Source
- myBatis
- git
- JDBC
Archives
- Today
- Total
헤르메스 LIFE
[WARN] Path with "WEB-INF" or "META-INF": [WEB-INF/jsp/index.jsp] 본문
Exception
[WARN] Path with "WEB-INF" or "META-INF": [WEB-INF/jsp/index.jsp]
헤르메스의날개 2021. 7. 27. 00:20728x90
Spring Boot 기반의 Web 개발환경을 설정하던 중 아래와 같은 오류가 발생하였습니다.
Path with "WEB-INF" or "META-INF": [WEB-INF/jsp/index.jsp]
원인
Spring Boot 의 embed-Tomcat 에 JSP 를 처리하는 서블릿이 없어서 발생하는 오류라고 합니다.
방법 #1
Servlet 을 Dependency 에 추가해 줍니다.
방법 #2
jasper를 의존성에 추가해 줍니다.
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
</dependency>
참고
https://yeonyeon.tistory.com/m/110
[Spring] Path with "WEB-INF" or "META-INF" 에러
Path with "WEB-INF" or "META-INF" 에러 에러 코드 전문 ▼ 더보기 2021-05-20 16:35:32.017 WARN 8656 --- [nio-8080-exec-2] o.s.w.s.r.ResourceHttpRequestHandler : Path with "WEB-INF" or "META-INF": [W..
yeonyeon.tistory.com
728x90