1. 程式人生 > >eclipse 釋出web專案到tomcat找不到本地的專案

eclipse 釋出web專案到tomcat找不到本地的專案

3) 配置 Modify Faceted Project

  點選Further configuration available…,彈出Modify Faceted Project視窗

  此處是設定web.xml檔案的路徑,我們輸入src/main/webapp。

  Generate web.xml deployment descriptor自動生成web.xml檔案,可選可不選。

  2. 經過1的project轉換後,應該能夠看到Deployment Assembly出現了,但如果還麼出現,很有可能在Eclipse中Deployment Assembly被disable了,那麼我們需要做的就是將Deployment Assembly選項enable。

  在專案所在的工作區間有一個.project檔案,開啟該檔案增加如下這一行用於enable Deployment Assembly屬性。

  <nature>ormon.modulecore.ModuleCoreNature</nature>

  如下面的.project file.

  < xml version="1.0" encoding="UTF-8" > <projectDescription> <name>shortbread</name> <comment></comment> <projects> </projects> <buildSpec> <buildCommand> <name>orre.javabuilder</name> <arguments> </arguments> </buildCommand> <buildCommand> <name>ormore.builder</name> <arguments> </arguments> </buildCommand> <buildCommand> <name>com.googlre.webAppProjectValidator</name> <arguments> </arguments> </buildCommand> <buildCommand> <name>com.googlre.gwtProjectValidator</name> <arguments> </arguments> </buildCommand> <buildCommand> <name>orre.maven2Builder</name> <arguments> </arguments> </buildCommand> </buildSpec> <natures> <nature>orre.javanature</nature> <nature>orre.maven2Nature</nature> <nature>ormore.nature</nature> <nature>com.googlre.gwtNature</nature> <nature>ormon.modulecore.ModuleCoreNature</nature> </natures> </projectDescription>

  然後重啟Eclipse, 就可在Project的properties中看到Deployment Assembly選項了。

附:設定部署程式集(Web Deployment Assembly)