0

我正在使用 Struts 1。我有一个标签库

<%@ taglib prefix="s" uri="/WEB-INF/struts-tags.tld" %>

此标签库仅适用于 Struts 2.0 框架。这有一个标签,我在我的应用程序中使用过。现在当我不得不回溯到 Struts 1 时出现错误

无法解析部署描述符:java.io.IOException: cannot resolve '/WEB-INF/struts-tags.tld' into a valid tag library 可能由于错误而发生

谁能建议如何在struts 1中使用

4

1 回答 1

1
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>

然后使用 html:select 和官方文档中解释的适当属性。

<html:select property="...">
...
</html:select>
于 2009-09-07T11:36:29.940 回答