欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

maven项目中核心标签库jstl代码显示在页面上

程序员文章站 2022-05-19 17:07:32
...

在maven中添加完核心标签库的依赖

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

jsp页面顶端也添加了

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

Reimport一下之后c标签代码还是会显示在页面上
maven项目中核心标签库jstl代码显示在页面上

解决方法

在该jsp页面顶端再加上
<%@ page isELIgnored=“false” %>
maven项目中核心标签库jstl代码显示在页面上
maven项目中核心标签库jstl代码显示在页面上
哈哈哈解决了~~
借鉴出处 https://www.jianshu.com/p/cc139391b6b8