Update README.md

pull/3742/head
Nikita Koksharov 4 years ago committed by GitHub
parent 88fe37db3e
commit 67ed0222f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -4,6 +4,31 @@ Integrates Redisson with [Quarkus](https://quarkus.io/) framework.
Supports Quarkus 1.6.x - 2.0.x
## Native image with RemoteService
Add **dynamic-proxy.json** and **reflection-config.json** files in `quarkus.native.additional-build-args` setting.
```
-H:DynamicProxyConfigurationResources=dynamic-proxy.json,-H:ReflectionConfigurationFiles=reflection-config.json
```
dynamic-proxy.json:
```
[
["<Remote Service interface name>"]
]
```
reflection-config.json:
```
[
{
"name":"<Remote Service interface name>",
"allDeclaredMethods":true
}
]
```
## Usage
### 1. Add `redisson-quarkus` dependency into your project:

Loading…
Cancel
Save