我是新的Struts.i已嘗試過一個示例struts1.x application.when我運行它,它給出了一個錯誤錯誤「絕對URI:http://struts.apache.org/tags-html不能解決在任何web.xml或與此應用程序部署的jar文件」
絕對URI:http://struts.apache.org/tags-html不能在web.xml或部署該應用程序的jar文件來解決」我的JSP頁面 '<% @taglib uri =「http://struts.apache.org/tags-html」prefix =「html」%> <%@ taglib uri =「http://struts.apache.org/tags-bean」prefix = 「bean」%>'
網頁:
<html>
<body>
<center>
<html:errors/>
<html:form action="login">
<bean:message key="label.uname"/>
:
<html:text property="uname"/>
<br>
<bean:message key="label.pwd"/>
:
<html:text property="pwd"/>
<br>
<html:submit value="LOGIN"/>
</html:form>
</center>
</body>
</html>
的web.xml:
<web-app>
<servlet>
<servlet-name>Action</servlet-name>
<servlet-class>org.apache.struts.Action.ActionServlet</servlet-class>
<init-param>
<param-name>Config</param-name>
<param-value>/WEB-INF/struts-config.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
</web-app>