SpringBoot에 JSP 연동시 에러

에러
org.apache.jasper.JasperException: The absolute uri: [http://java.sun.com/jsp/jstl/core] cannot be resolved in either web.xml or the jar files deployed with this application

해결방법
build.gradle 수정

//구문 제거
implementation 'javax.servlet.jsp.jstl:jstl' 

//구문 추가
implementation 'jakarta.servlet:jakarta.servlet-api'
implementation 'jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api'
implementation 'org.glassfish.web:jakarta.servlet.jsp.jstl'

 

One Comment on “SpringBoot에 JSP 연동시 에러”

Leave a Reply