springboot The absolute uri: [http://java.sun.com/jsp/jstl/core] cannot be resolved…
阿新 • • 發佈:2018-12-15
環境:
Tomcat: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> <version>8.5.19</version> </dependency> SpringBoot <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.1.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> jstl <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </dependency>
出現的問題
- 原因 :
- 找不到jstl類庫中的.tld檔案
- 解決:
- 在 webapp/WEB-INF 目錄下建立一個 tld 目錄 將 jstl 的標籤複製到 tld 目錄下: