헤르메스 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:20
728x90

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