2012-05-01 49 views
0

我下載了tomcat,eclipse,Struts框架。 Tomcat正在工作。在哪裏放置eclipse和Struts?我在tomcat文件夾外面放置了eclipse和Struts。所需的jar文件存儲在eclipse當前文件夾中。我收到錯誤。錯誤在Struts框架設置中

<%@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 

回答

0

Eclipse是一個IDE。它用於開發Java應用程序。不只是一個應用程序,而是幾個。您不應該將任何特定於應用程序的jar放入eclipse文件夾中。

Struts(而不是strut或struct)是一個web框架。它的jar必須放在已部署的應用程序的WEB-INF/lib文件夾中。在Eclipse Web項目中,它們的位置是(通常)<yourProjectDirectory>/WebContent/WEB-INF/lib

+0

爲什麼我得到這個錯誤? –

+0

,因爲struts jar不在webapp的類路徑中。 –