File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 1
- = Netty 5.x Template Repository for Netty Contrib
1
+ = Netty 5.x Codec Http Multipart Repository for Netty Contrib
2
2
3
3
* Netty core repository: https://github.com/netty/netty
4
4
* License: Apache-2.0 License
5
5
* Required Java version: Java 11
6
6
* Maven coordinates:
7
- ** `io.netty .contrib:netty-template :5.0.0.Final-SNAPSHOT`
7
+ ** `io.netty5 .contrib:netty-codec-multipart :5.0.0.Final-SNAPSHOT`
8
8
9
9
## Project description
10
10
11
11
This project is a porting of the Netty 4.1.78.Final Multipart codec to the new Netty 5.0.0-Alpha3 Buffer API.
12
12
13
+ ## Running the benchmarks
14
+
15
+ ```
16
+ mvn clean install;
17
+ cd benchmark;
18
+ mvn clean package -P benchmark-jar
19
+ java -jar target/microbenchmarks.jar
20
+ ```
21
+
13
22
## Running the server example
14
23
15
24
you can run the following http server example showing how to use the HTTP multipart package for file uploads and decoding post data:
@@ -24,4 +33,4 @@ And then run the http client example from another console:
24
33
```
25
34
cd examples
26
35
mvn compile exec:java -Dexec.mainClass="io.netty.contrib.handler.codec.example.http.multipart.HttpUploadClient"
27
- ```
36
+ ```
You can’t perform that action at this time.
0 commit comments