tomcat 源码构建 (草稿)

(0)下载安装JDK(1.5.x或其后版本),设定JAVA_HOME环境变量。

(1)安装Apache Ant 1.6.x,创建ANT_HOME环境变量。在PATH环境变量中添加ANT_HOM/bin。

(2)构建Tomcat 6.0。

(2.1)获取源代码。

(2.2)构建。

*执行以下命令

   cd ${tomcat.source}

   ant download

   ant

*用代理执行download时,可建一个${tomcat.source}/build.properties,并写入以上内容。

    # ----- Proxy setup -----
    # Uncomment if using a proxy server
    #proxy.host=proxy.domain
    #proxy.port=8080
    #proxy.use=on

    # ----- Default Base Path for Dependent Packages -----
    # Replace this path with the directory path where dependencies binaries
    # should be downloaded
    base.path=/usr/share/java

(3)更新代码。

最好在执行构建前更新一最近的代码。

(4)重建

想快速重构只修改过的代码,可用以下命令:

cd ${tomcat.source}

ant

(5)构建servlet和jsp API文档

cd ${tomcat.source}

ant -f dist.xml dist-javadoc

(6)构建一个发布版运行测试

cd ${tomcat.source}

ant -f dist.xml release

你可能感兴趣的:(java)