1. 程式人生 > >tomcat原始碼閱讀--eclipse原始碼搭建

tomcat原始碼閱讀--eclipse原始碼搭建

寒暄部分:

一直說閱讀tomcat原始碼但始終沒有著手去做這件事,但感覺很有必要,今天想回過頭來去做這件事情。

今天就開始在本地eclipse中搭建閱讀tomcat原始碼的環境。

本地環境搭建:

first:

原始碼下載:首先要到官網下載tomcat原始碼如果怕麻煩可以到其它部落格的下載:tomcat原始碼下載路徑 ps:本人上傳的

second:

原始碼下載了要用什麼構建編譯工具管理這個問題很是頭疼,一般都會在這一步放棄了,make ant maven gradle 大部分都是用ant 然後各種操作,到最後都是無疾而終。這邊採用maven(妹問 麥問 不要讀成媽問)

這裡就涉及到了各種工程之間的轉換問題了,eclipse中的普通專案  git專案  maven專案  ,不同專案都會有其對應的標緻檔案的,maven 的標緻檔案就是pom.xml 這個時候要這解壓後的檔案新建一個pom.xml 在這裡面新增所依賴的jar座標了,涉及到了maven的知識不清楚的去複習一下maven的基本使用。

然後再用eclipse 匯入,就會發現eclipse會讀到pom.xml檔案。這個時候原先下載的原始碼就變成了maven專案了。

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

    <modelVersion>4.0.0</modelVersion>
    <groupId>org.apache</groupId>
    <artifactId>tomcat</artifactId>
    <name>apache-tomcat-8.5.24</name>
    <version>8.5.24</version>

    <build>
        <finalName>Tomcat-8.5.24</finalName>
        <sourceDirectory>java</sourceDirectory>
        <testSourceDirectory>test</testSourceDirectory>
        <resources>
            <resource>
                <directory>java</directory>
            </resource>
        </resources>
        <testResources>
            <testResource>
                <directory>test</directory>
            </testResource>
        </testResources>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.5.1</version>
                <configuration>
                    <encoding>UTF-8</encoding>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.easymock</groupId>
            <artifactId>easymock</artifactId>
            <version>3.4</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.apache.ant</groupId>
            <artifactId>ant</artifactId>
            <version>1.10.0</version>
        </dependency>
        <dependency>
            <groupId>wsdl4j</groupId>
            <artifactId>wsdl4j</artifactId>
            <version>1.6.2</version>
        </dependency>
        <dependency>
            <groupId>javax.xml</groupId>
            <artifactId>jaxrpc</artifactId>
            <version>1.1</version>
        </dependency>
        <dependency>
            <groupId>org.eclipse.jdt.core.compiler</groupId>
            <artifactId>ecj</artifactId>
            <version>4.6.1</version>
        </dependency>
    </dependencies>
</project>  

匯入maven專案,因為有些測試類依賴了examples目錄的類,因此把apache-tomcat-8.5.24-src\webapps\examples\WEB-INF\classes目錄在開發工具上面設定為java原始檔,編譯的class輸出目錄設為classes,如下圖所示

final

程式碼倉庫的利用:

如果說你閱讀原始碼什麼都不註釋什麼都不動那就沒意思了,但改過後都不知道自己都幹了些啥,所以原始碼備份很重要,所以選擇上傳到 github 或者是碼雲 這裡涉及到了  git的使用,有時間可以學習一下。git小結

參考資料: