Skip to content

Repository files navigation

LibNetty Project

A set of some useful libraries based on Netty4.

JDK version compatibility list

version JDK version
4.x JDK 21+
3.x JDK 17+
2.x JDK 11+
older JDK 8+

Add Dependencies

Add Maven Dependencies

pom.xml

<pom>
  <dependencyManagement>
    <dependencies>
      <!-- BOM -->
      <dependency>
        <groupId>com.github.fmjsjx</groupId>
        <artifactId>libnetty-bom</artifactId>
        <version>4.3.0-SNAPSHOT</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <dependencies>
    <!-- HTTP server -->
    <dependency>
      <groupId>com.github.fmjsjx</groupId>
      <artifactId>libnetty-http-server</artifactId>
    </dependency>
  </dependencies>
</pom>

Add Gradle Dependencies

Groovy DSL

repositories {
    mavenCentral
}

dependencies {
    // BOM
    implementation platform('com.github.fmjsjx:libnetty-bom:4.3.0-SNAPSHOT')
    // HTTP server
    implementation 'com.github.fmjsjx:libnetty-http-server'
}

Kotlin DSL

repositories {
    mavenCentral()
}

dependencies {
    // BOM
    implementation(platform("com.github.fmjsjx:libnetty-bom:4.3.0-SNAPSHOT"))
    // HTTP server
    implementation("com.github.fmjsjx:libnetty-http-server")
}

Modules

There are a number of modules in LibNetty, here is a quick overview:

libnetty-core

The libnetty-core module provides additional features for Netty4.

libnetty-fastcgi

The libnetty-fastcgi module provides codec components for Fast-CGI.

libnetty-http-client

The libnetty-http-client module provides a simplified HTTP client, supports both synchronous and asynchronous(based on JDK8+ CompletableFuture) APIs.

libnetty-http-server

The libnetty-http-server module provides a simplified HTTP server framework.

libnetty-resp

The libnetty-resp module provides codec components for RESP(REdis Serialization Protocol) and RESP3 specification.

About

A set of some useful libraries based on netty-4.x.

Topics

Resources

Stars

16 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages