我正在使用Struts 1.我有一个taglibrary
<%@ taglib prefix="s" uri="/WEB-INF/struts-tags.tld" %>
此标记库仅适用于Struts 2.0 Framework.This有一个我在我的应用程序中使用的标记。现在当我不得不回溯到Struts 1时出现错误
无法解析部署描述符: java.io.IOException:无法解析 '/WEB-INF/struts-tags.tld'成了一个 可能发生了有效的标记库 由于错误
任何人都可以建议如何在struts 1中使用
答案 0 :(得分:1)
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
然后使用html:select使用适当的属性,如official documentation中所述。
<html:select property="...">
...
</html:select>