WTP (Web Tools Platform) 是一個開發J
用了太長時間的MyEclipse難免想換換口味
引用一段官方的介紹:
The Eclipse Web Tools Platform (WTP) project extends the Eclipse platform with tools for developing Web and Java EE applications
更多使用文檔
下載地址
我的環境配置
Eclipse版本 eclipse
WTP版本 wtp
EMF版本 emf
GEF版本 GEF
其他插件略
window
File
window
在servers視圖會顯示剛才創建的Web Server 右鍵
本以為WTP發布應用時將文件copy到tomcat下面
那麼它是如何發布的呢
<%=com
結果如下
file:/D:/SYJ
原來把文件同步到了工作區下tadata下面
D:/SYJ
看來WTP沒有使用tomcat 的啟動批處理而是直接調用了tomcat的bootstrap
刪除tomcat/bin目錄下的所有文件
bootstrap
tomcat
tomcat
jsvc
commons
通過文件比較以及一系列嘗試終於摸索出如下簡單方法
修改
在<natures></natures>中加入
<nature>mre
<nature>mon
<nature>org
在<buildSpec></buildSpec>中加入
<buildCommand>
<name>mre
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org
<arguments>
</arguments>
</buildCommand>
右鍵刷新項目後
From:http://tw.wingwit.com/Article/program/Java/ky/201311/28744.html