/netty-router

Tiny HTTP router library for Netty, that can route and create reverse routes

Primary LanguageJavaMIT LicenseMIT

Netty-Router is a tiny Java library intended for use with Netty 4.1, to route HTTP requests to your Netty handlers.

Javadoc:

For usage instructions, see the Javadoc above of class Router and the example.

Use with Maven

<dependency>
  <groupId>tv.cntt</groupId>
  <artifactId>netty-router</artifactId>
  <version>2.2.0</version>
</dependency>

Tip: To boost Netty speed, you should also add Javassist

<dependency>
  <groupId>org.javassist</groupId>
  <artifactId>javassist</artifactId>
  <version>3.21.0-GA</version>
</dependency>