Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 846 Bytes

README.rst

File metadata and controls

33 lines (24 loc) · 846 Bytes

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>