https://github.com/brandonfl/spring-lombok-issue
https://github.com/brandonfl/spring-lombok-issue
bug lombok spring spring-boot
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/brandonfl/spring-lombok-issue
- Owner: brandonfl
- License: mit
- Created: 2025-09-18T14:52:00.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2025-09-18T15:32:13.000Z (9 months ago)
- Last Synced: 2025-09-18T18:19:32.017Z (9 months ago)
- Topics: bug, lombok, spring, spring-boot
- Language: Java
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Spring lombok issue
## Used versions
- Spring Boot Starter 3.5.6
- Lombok 1.18.42
- Java 17
## Run
```bash
docker compose up --build --force-recreate
```
## Expected Behavior
On http://localhost:8080/
```json
{
"test": {
"is_user_available": true
}
}
```
## Current Behavior
On http://localhost:8080/
```json
{
"test": {
"userAvailable": true,
"is_user_available": true
}
}
```