Dev_Log

[SpringBoot] ResourceHttpRequestHandler : Path with "WEB-INF" or "META-INF

LeeDaniel 2021. 3. 30. 14:15
반응형
ResourceHttpRequestHandler : Path with "WEB-INF" or "META-INF
스프링부트 프로젝트 생성후 JSP 호출시 발생

 

 Solution
pom.xml <dependencies>에

아래 <dependency>를 추가해준다

<!-- embed Tomcat -->
<dependency>
  <groupId>org.apache.tomcat.embed</groupId>
  <artifactId>tomcat-embed-jasper</artifactId>
</dependency>
<!-- JSTL -->
<dependency>
  <groupId>javax.servlet</groupId>
  <artifactId>jstl</artifactId>
</dependency>
반응형