springboot The absolute uri: [http://java.sun.com/jsp/jstl/core] cannot be resolved…

springboot The absolute uri: [http://java.sun.com/jsp/jstl/core] cannot be resolved…

环境:

Tomcat: 
    
        org.springframework.boot
        spring-boot-starter-tomcat
        8.5.19
    
SpringBoot     
     
         org.springframework.boot
         spring-boot-starter-parent
         2.0.1.RELEASE
          
     
jstl 
     
         javax.servlet
         jstl
         1.2
     

出现的问题

在这里插入图片描述

原因 :
找不到jstl类库中的.tld文件
解决:
webapp/WEB-INF 目录下创建一个 tld 目录 将 jstl 的标签复制到 tld 目录下:
springboot The absolute uri: [http://java.sun.com/jsp/jstl/core] cannot be resolved…_第1张图片

你可能感兴趣的:(J2EE)