Eclipse Struts框架设置中的错误

Eclipse Struts框架设置中的错误,eclipse,tomcat,struts,Eclipse,Tomcat,Struts,我下载了tomcat、eclipse和Struts框架。Tomcat正在工作。在哪里放置eclipse和Struts?我将eclipse和Struts放在tomcat文件夹之外。所需的jar文件存储在eclipse当前文件夹中。我犯了个错误 <%@taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %> <html> <head> <meta http-equiv="Content

我下载了tomcat、eclipse和Struts框架。Tomcat正在工作。在哪里放置eclipse和Struts?我将eclipse和Struts放在tomcat文件夹之外。所需的jar文件存储在eclipse当前文件夹中。我犯了个错误

 <%@taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Hello World</title>
</head>
<body>
<bean:write name="helloWorldForm" property="message"/>
</body>
</html>
unknown tag:bean.write

Eclipse是一个IDE。它用于开发Java应用程序。不仅仅是一个应用程序,还有几个应用程序。您不应该将任何特定于应用程序的jar放入eclipse文件夹中


Struts而不是Struts或struct是一个web框架。它的JAR必须放在部署的应用程序的WEB-INF/lib文件夹中。在Eclipse web项目中,它们的位置通常是/WebContent/web-INF/lib。

,因为struts jar不在webapp的类路径中。