使用eclipse建立Tomcat工程

來源:互聯網
上載者:User
使用 eclipse 建立 Tomcat 工程 安裝Eclipse的Tomcat外掛程式,可能出現版本相容問題,具體沒有研究,我是直接拷貝別人的。 使用Eclipse建立Tomcat工程,指定工程名和虛擬目錄名就行了,例如 test,產生的目錄結構如下:   同時Eclipse 在Tomcat 中註冊web application test(在conf/ 目錄下的server.xml添加<context>)。  我沒找到編譯工程的命令,所以寫了個build.xml管理工程。事實上當我儲存java檔案時,eclipse會將編譯好的class放到classes/ 中。<project name="工程名" default="complie" basedir=".">                            <property name="srcDir"   location="WEB-INF/src"/>              <property name="buildDir" location="WEB-INF/classes" />              <property name="SpLibDir" location="WEB-INF/lib" />              <property name="servlet-apiJar" value=" servlet-api.jar的path" />               <target name="init">                            <delete dir="${buildDir}"/>                            <mkdir dir="${buildDir}"/>              </target>               <target name="complie" description="編譯servlet" depends="init">                            <javac srcdir="${srcDir}" destdir="${buildDir}">                                          <classpath>                                                        <pathelement path="${buildDir};" />                                                        <pathelement path="${servlet-apiJar}" />                                                        <fileset dir="${SpLibDir}">                                                                      <include name="*.jar" />                                                        </fileset>                                          </classpath>                            </javac>              </target> </project>   

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.