背景

业务开发都使用Tomcat作为web容器。但是对Tomcat的研究却比较少。

获取源代码

获取源代码的方式有两种

  • 官网下载
  • Github 获取

我更推荐Github,从官网一次只能下载其中某一个版本,而Git可以非常方便的切换

  • Git地址

    1. git@github.com:apache/tomcat.git
  • 官网下载

    1. https://tomcat.apache.org/download-80.cgi

配置

由于Tomcat是采取ant进行build的,这个方式在我们这里是不可行的. 经过网上抄袭,可以采取pom.xml的maven配置的方式来进行管理.

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>org.apache</groupId>
  6. <artifactId>tomcat</artifactId>
  7. <name>apache-tomcat-8.5.57</name>
  8. <version>8.5.57</version>
  9. <build>
  10. <finalName>Tomcat-8.5.57</finalName>
  11. <sourceDirectory>java</sourceDirectory>
  12. <testSourceDirectory>test</testSourceDirectory>
  13. <resources>
  14. <resource>
  15. <directory>java</directory>
  16. </resource>
  17. </resources>
  18. <testResources>
  19. <testResource>
  20. <directory>test</directory>
  21. </testResource>
  22. </testResources>
  23. <plugins>
  24. <plugin>
  25. <groupId>org.apache.maven.plugins</groupId>
  26. <artifactId>maven-compiler-plugin</artifactId>
  27. <version>3.5.1</version>
  28. <configuration>
  29. <encoding>UTF-8</encoding>
  30. <source>1.8</source>
  31. <target>1.8</target>
  32. </configuration>
  33. </plugin>
  34. </plugins>
  35. </build>
  36. <dependencies>
  37. <dependency>
  38. <groupId>junit</groupId>
  39. <artifactId>junit</artifactId>
  40. <version>4.12</version>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.easymock</groupId>
  45. <artifactId>easymock</artifactId>
  46. <version>3.4</version>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.apache.ant</groupId>
  51. <artifactId>ant</artifactId>
  52. <version>1.10.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>wsdl4j</groupId>
  56. <artifactId>wsdl4j</artifactId>
  57. <version>1.6.2</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>javax.xml</groupId>
  61. <artifactId>jaxrpc</artifactId>
  62. <version>1.1</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.eclipse.jdt.core.compiler</groupId>
  66. <artifactId>ecj</artifactId>
  67. <version>4.6.1</version>
  68. </dependency>
  69. <!-- https://mvnrepository.com/artifact/org.glassfish/javax.xml.rpc -->
  70. <dependency>
  71. <groupId>org.glassfish</groupId>
  72. <artifactId>javax.xml.rpc</artifactId>
  73. <version>3.0.1-b03</version>
  74. </dependency>
  75. </dependencies>
  76. </project>

获取到代码以后,可以 git checkout 8.5.57 这个版本。

启动Tomcat

由于我本地默认使用的JDK 11, 这里我中途切换成了JDK8

根据启动报错删除 TestCookieFilter.java

根据JSP报错配置如下代码 1209行

  1. context.addServletContainerInitializer(new JasperInitializer(), null);

8080端口是日常被占用端口,再额外配置Tomcat启动端口 conf/server.xml 8080 端口变更为 8082

配置变量

  • catalina.home
  • catalina.base

    /Users/chenshun/open/tomcat Git clone下来的代码地址

  1. -Dcatalina.home=/Users/chenshun/open/tomcat
  2. -Dcatalina.base=/Users/chenshun/open/tomcat
  3. -Djava.endorsed.dirs=/Users/chenshun/open/tomcat/endorsed
  4. -Djava.io.tmpdir=/Users/chenshun/open/tomcat/temp
  5. -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager
  6. -Djava.util.logging.config.file=/Users/chenshun/open/tomcat/conf/logging.properties
  7. -Duser.language=en
  8. -Duser.region=US

image.png

回想

回想大二开始捣鼓Tomcat的时候,用了几天的时间都没有搞清楚那些配置,各种端口被占用导致启动不起来,各种改配置,导致Tomcat魔改的乱七八糟的,那个时候的Eclipse也是没有Tomcat插件的,不知道有没有,反正不知道。

如今只有了20多分钟就把Tomcat从源代码跑起来了,回顾真的挺有意思的。

不过也有一个可惜的点,那个时候没有一个好的文档来记录博客,一些有意思的经历从此丢失了,就算记得也只是一些支离破碎的部分。不过把现在的经历作为流水记录也是有意思的一个东西。 :)