Skip to content

Latest commit

 

History

History
50 lines (45 loc) · 2.55 KB

README.zh.md

File metadata and controls

50 lines (45 loc) · 2.55 KB

spring-boot-starter-netty

[English] [中文]

简介

  • 一个基于Netty实现的Spring Boot内置Servlet容器。
  • 仅支持 Netty 4.1.41.Final 及以上版本,可以在项目pom.xml文件中指定使用的版本号。

构建

  1. 获取工程并安装到本地:

    $ mvn clean install
  2. 在你的Spring-Boot项目中加入以下依赖:

<dependencies>
    <!-- 排除自带的内置Tomcat -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
        <exclusions>
            <exclusion>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-tomcat</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
    <!-- 引入本项目 -->
    <dependency>
        <groupId>io.gitlab.leibnizhu</groupId>
        <artifactId>spring-boot-starter-netty</artifactId>
        <version>1.2</version>
    </dependency>
    <!-- 指定项目使用的Netty版本。需要注意兼容其他基于Netty的依赖 -->
    <dependency>
        <groupId>io.netty</groupId>
        <artifactId>netty-all</artifactId>
        <version>4.1.113.Final</version>
    </dependency>
</dependencies>

代码设计分析的博文

陆续更新中……
基于Netty的Spring Boot内置Servlet容器的实现(一)
基于Netty的Spring Boot内置Servlet容器的实现(二)
基于Netty的Spring Boot内置Servlet容器的实现(三)
基于Netty的Spring Boot内置Servlet容器的实现(四)
基于Netty的Spring Boot内置Servlet容器的实现(五)