[Spring] SpringBoot Path with "WEB-INF" or "META-INF" 오류
Spring Boot에서 jsp로 화면을 만들고,
Controller에서 View로 값 넘겨주기 실습 중 build 하면 Path with "WEB-INF" or "META-INF" 가 뜨면서 jsp 화면이 뜨지 않았다.
해결은 간단하다.
Spring Boot에서 내장된 Tomcat을 사용할 때
JSP를 처리하는 서블릿을 추가하지 않아서 발생하는 것이다.
Gradle
build.gradle에 의존성 추가
implementation 'org.apache.tomcat.embed:tomcat-embed-jasper'
Maven
pom.xml에 의존성 추가
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
</dependency>
Author And Source
이 문제에 관하여([Spring] SpringBoot Path with "WEB-INF" or "META-INF" 오류), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@modsiw/Spring-SpringBoot-Path-with-WEB-INF-or-META-INF-오류저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)