我为structs-taglibs添加了dependdencie。
<!-- https://mvnrepository.com/artifact/org.apache.struts/struts-taglib -->
<dependency>
<groupId>org.apache.struts</groupId>
<artifactId>struts-taglib</artifactId>
<version>1.3.10</version>
</dependency>
现在我在Maven依赖项中看到了struts-taglib-1.3.10-sources.jar。
在Jsp中我添加了
<%@ taglib prefix="s" uri="/struts-taglib" %>
然后
<s:select key="id" list="@com.compsys.model.RightsGroupService@name"/>
但是所有这些标签都带有带有未知标签的黄色下划线(s:选择)。
你帮我吗?