Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kantis/kxs-repro
https://github.com/kantis/kxs-repro
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kantis/kxs-repro
- Owner: Kantis
- Created: 2023-03-27T16:55:16.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-30T22:56:22.000Z (about 1 year ago)
- Last Synced: 2023-11-30T23:32:54.419Z (about 1 year ago)
- Language: Kotlin
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Webflux KotlinX Serialization issue
When using KotlinX serialization with Webflux, we expect that any combination of `suspend`
functions and `ResponseEntity` to play nicely together.This project demonstrates that this is only the case when using `suspend` and **not** using `ResponseEntity`.
Any other combination of the two will cause Webflux to fall back to Jackson serialization which does not handle
value classes.### How to run
1. ```./gradlew bootRun```2. ```./gradlew check```