为了解决这个问题,应该包括什么maven依赖项?
<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form" %>jsp文件中的错误。
Cannot find the tag library descriptor for "http://www.springframework.org/tags/form"发布于 2018-06-10 00:51:35
您需要添加以下spring-webmvc依赖项
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${org.springframework-version}</version>
</dependency>
<dependency>
<groupId>taglibs</groupId>
<artifactId>standard</artifactId>
<version>1.1.2</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>发布于 2018-06-10 02:21:28
您需要确保jstl jar应该在类路径中。如果您使用的是maven,请使用提供的on this link代码片段在pom.xml中添加对jstl的依赖项。如果您没有使用maven,请从on this link下载jstl jar并将其粘贴到您的WEB-INF/lib中。
https://stackoverflow.com/questions/50776330
复制相似问题