为了解决问题,应包括哪些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"
答案 0 :(得分:0)
您需要添加以下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>
答案 1 :(得分:0)
尝试删除@
和taglib
使用以下代替。
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form" %>