异常 - Cannot find the tag library descriptor for /struts-tags

导入项目:

jsp:<%@ taglib prefix="s" uri="/struts-tags" %>

解决:

pom加:

<dependency>

<groupId>org.apache.struts</groupId>
 <artifactId>struts2-core</artifactId>
<version>2.3.16.3</version>

</dependency>

参考:

https://blog.csdn.net/ncepuzhuang/article/details/7924203

猜你喜欢

转载自blog.csdn.net/sinat_32238399/article/details/81060986