问答详情
源自:4-2 Controller-基础代码

JSP上C标签的这个错误

Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core" JSP上的这个错误怎么处理???

提问者:好容易 2016-06-11 21:08

个回答

  • 慕课网_小毛驴
    2016-06-11 22:41:31
    已采纳

    缺少 jstl.jar   在pom.xml加入

    <dependency>

        <groupId>javax.servlet</groupId>

        <artifactId>jstl</artifactId>

        <version>1.2</version>

    </dependency>