https://github.com/la3rence/spring-security-webflux
Spring WebFlux with Reactive Redis & R2DBC
https://github.com/la3rence/spring-security-webflux
Last synced: over 1 year ago
JSON representation
Spring WebFlux with Reactive Redis & R2DBC
- Host: GitHub
- URL: https://github.com/la3rence/spring-security-webflux
- Owner: la3rence
- Created: 2024-09-01T14:55:40.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-19T15:04:45.000Z (over 1 year ago)
- Last Synced: 2025-03-19T16:23:29.487Z (over 1 year ago)
- Language: Java
- Homepage:
- Size: 48.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Spring Security WebFlux with R2DBC
## Roadmap
- [x] RBAC
- [x] Containerize
- [x] Global REST Response
- [x] Pagination
- [x] Customized Exception and Handler
- [x] Logger
- [ ] CI/CD
- [x] Monitor & Trace
- [ ] Unit Test
- [ ] Profile Configuration
## docker
```shell
# for mysql data in container
mkdir -p /var/tmp/mysql_data/
# build jar
mvn clean package -Dmaven.test.skip=true
# set up database
docker-compose up -d --build
```
## netty access log
```text
-Dreactor.netty.http.server.accessLogEnabled=true
```