首页 java配置 Can not find the tag library descriptor for “http://java.sun.com/jsp/jstl/core”

Can not find the tag library descriptor for “http://java.sun.com/jsp/jstl/core”

Use taglib definition in your JSP or better include it in ev…

Use taglib definition in your JSP or better include it in every page by the first line.

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

需要加

<dependency>
  <groupId>jstl</groupId>
  <artifactId>jstl</artifactId>
  <version>1.2</version>
  <scope>compile</scope>
</dependency>
<dependency>
  <groupId>taglibs</groupId>
  <artifactId>standard</artifactId>
  <version>1.1.2</version>
  <scope>compile</scope>
</dependency>

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5"
    xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
    http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

 

免责声明:文章内容不代表本站立场,本站不对其内容的真实性、完整性、准确性给予任何担保、暗示和承诺,仅供读者参考,文章版权归原作者所有。如本文内容影响到您的合法权益(内容、图片等),请及时联系本站,我们会及时删除处理。

为您推荐

【解决办法】启动zookeeper报错(Invalid config&&找不到或无法加载主类 org.apache.zookeeper.server.quorum.QuorumPeerMain)

【解决办法】启动zookeeper报错(Invalid config&&找不到或无法加载主类 org.apache.zookeeper.server.quorum.QuorumPeerMain)

问题一 错误描述:进入bin目录下启动zookeeper服务cmd弹窗闪退 1.右键编辑zkServer.cmd文件,在...
windows下 zookeeper 安装和启动

windows下 zookeeper 安装和启动

windows下 zookeeper 安装和启动 zookeeper是开放源码的分布式应用程序协调服务,可以作为dubb...
idea   is never  user  明明有调用

idea is never user 明明有调用

在IntelliJ IDEA 里面的一些类及方法,明明有被其他的类或者方法调用,但是去看的时候显示灰色,鼠标放上面的时候...
谷歌邮箱开发是注意的配置

谷歌邮箱开发是注意的配置

这个谷歌邮箱要开  https://myaccount.google.com/lesssecureapps?pli=1&...
nginx 重启

nginx 重启

先找下安装目录 ps aux | grep nginx 重启下 # cd /www/wdlinux/nginx/sbin...
返回顶部