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 | 31 |
Tags
- PostgreSQL
- 설정
- Thymeleaf
- Open Source
- error
- maven
- 오픈소스
- Eclipse
- myBatis
- oracle
- Exception
- MySQL
- MSSQL
- Spring Boot
- Core Java
- git
- spring
- Python
- JavaScript
- Tomcat
- STS
- AJAX
- jpa
- SpringBoot
- 문서
- ubuntu
- Docker
- IntelliJ
- JDBC
- Source
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
728x90