Jsp中增加jstl标签库支持

在使用JSP中,需要增加jstl标签库支持,如下:

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ page session="false" %>
<html>
<head>
<title>SpringMVC</title>

</head>
<body>
    <h2>Welcome to tt</h2>
    <a href="<c:url value="/spittles" />">Spittles</a> |
    <a href="<c:url value="/spitter/register" />">Register</a>
</body>
</html>

在pom文件中,增加:

    <!-- 支持jstl在jsp的应用 -->
        <dependency>
            <groupId>jstl</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/taglibs/standard -->
        <dependency>
            <groupId>taglibs</groupId>
            <artifactId>standard</artifactId>
            <version>1.1.2</version>
        </dependency>

 

posted @ 2016-11-10 15:00  hylinux  阅读(2104)  评论(0编辑  收藏  举报