基于Java Bio 编写的简易版 Tomcat
- 新建一个 Servlet,继承自 HttpServlet,实现 doGet()、doPost() 方法
- 在 ClassPath 下创建配置文件 tomcat.properties
- 在配置文件中添加配置,配置文件中内容如下
# 服务器端口号
server.port=8080
# 线程池参数
thread.pool.core=200
thread.pool.max=300
# 空闲时间,单位秒
thread.pool.alive-time=60
thread.pool.block-queue.size=100
# servelt 路径映射,如下所示:
/hello=com.myboy.servlet.HelloServlet