使用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>