1

我正在尝试学习 Struts2 框架。我从该站点获得了 HelloWorld 示例:

`www.vaannila.com/struts/struts-tutorial/struts-tutorial-using-eclipse-1.html

突出显示的代码显示为警告:

<%@taglib uri="/struts-tags" prefix="s" %>
s:redirect forward="helloWorld"/>

警告如下:

在这一行发现了多个注释:
- 未知标签(bean:write)。
- 未知标签(bean:write)。

对于代码,我在 index.jsp 文件中收到相同的警告:

当我运行 tomcat 时,我在控制台中得到以下信息。我知道我的 tomcat 正在运行,但我该如何解决这个问题?

2012 年 6 月 13 日下午 1:12:28 org.apache.catalina.core.AprLifecycleListener 初始化

**INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Program Files\Java\jre7\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32;**

**Jun 13, 2012 1:12:28 PM org.apache.tomcat.util.digester.SetPropertiesRule begin
WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:StrutsExample1' did not find a matching property.**

Jun 13, 2012 1:12:28 PM org.apache.coyote.AbstractProtocol init

INFO: Initializing ProtocolHandler ["http-bio-8080"]

Jun 13, 2012 1:12:28 PM org.apache.coyote.AbstractProtocol init

INFO: Initializing ProtocolHandler ["ajp-bio-8009"]

Jun 13, 2012 1:12:28 PM org.apache.catalina.startup.Catalina load

INFO: Initialization processed in 735 ms

Jun 13, 2012 1:12:28 PM org.apache.catalina.core.StandardService startInternal

INFO: Starting service Catalina

Jun 13, 2012 1:12:28 PM org.apache.catalina.core.StandardEngine startInternal

INFO: Starting Servlet Engine: Apache Tomcat/7.0.27

Jun 13, 2012 1:12:31 PM org.apache.coyote.AbstractProtocol start

INFO: Starting ProtocolHandler ["http-bio-8080"]

Jun 13, 2012 1:12:31 PM org.apache.coyote.AbstractProtocol start

INFO: Starting ProtocolHandler ["ajp-bio-8009"]

Jun 13, 2012 1:12:31 PM org.apache.catalina.startup.Catalina start

INFO: Server startup in 2586 ms
4

1 回答 1

1

<bean:write>是struts 1.x 你必须<s:property>在struts 2.x中使用。

请参阅s:property 文档

于 2012-06-15T06:39:12.587 回答