Eclipse發(fā)布項(xiàng)目時(shí)部署失敗情況解決辦法
Posted on 2008-07-23 14:29 沙漠中的魚 閱讀(544) 評論(0) 編輯 收藏 所屬分類: 其他MyEclipse中的java項(xiàng)目,翻來復(fù)去的折騰修改,最后終于部署失敗了,部署時(shí)提示的錯誤信息如下:
Deployment failure on Tomcat 6.x. Could not copy all resources to E:\apache-tomcat-6.0.16\webapps\HebbnWebServices. If a file is locked, you can wait until the lock times out to redeploy, or stop the server and redeploy, or manually remove the deployment at E:\apache-tomcat-6.0.16\webapps\HebbnWebServices
再次點(diǎn)部署按鈕時(shí)就會提示如下:
Undeployment Failure could not be redeployed because it could not be completely removed in the undeployment phase. the most common cuase of this problem is attempting to redeploy while the server is running,which has locked one or more files.
to correct the deployment you will need to stop the server and then redeploy the project before restarting the server.
解決的辦法就是在Eclipse中把項(xiàng)目中引用的jar文件重新加一遍就行了,基本原因就是以前的jar文件不存在了,但是項(xiàng)目信息中還有,即項(xiàng)目的.classpath文件中還有不存在的jar文件引用。
可以右鍵點(diǎn)項(xiàng)目名稱,選擇Properties,選擇Java Build Path,選擇Libraries,把所有項(xiàng)目中的jar都remove,然后再點(diǎn)"add jars",把項(xiàng)目中的jar文件都加進(jìn)來,再次部署就正常了。
轉(zhuǎn)自:http://blog.csdn.net/peihexian/archive/2008/06/18/2561816.aspx