Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mp911de/reactive-spring
Project Reactor 3.3, Spring Framework 5.2, Spring Data 2.2
https://github.com/mp911de/reactive-spring
Last synced: 16 days ago
JSON representation
Project Reactor 3.3, Spring Framework 5.2, Spring Data 2.2
- Host: GitHub
- URL: https://github.com/mp911de/reactive-spring
- Owner: mp911de
- License: apache-2.0
- Created: 2017-05-07T16:15:33.000Z (over 7 years ago)
- Default Branch: initial
- Last Pushed: 2020-06-13T10:14:01.000Z (over 4 years ago)
- Last Synced: 2024-10-03T12:16:28.856Z (about 1 month ago)
- Language: Java
- Homepage:
- Size: 119 KB
- Stars: 48
- Watchers: 3
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Reactive Spring Workshop
This project is the skeleton (and solution) for the Reactive Spring workshop. The slides are available from https://mp911.de/reactive-spring.
This workshop is designed to help you to learn easily the Reactive API provided by [Reactor Core 3.x](https://github.com/reactor/reactor-core/) and to discover Spring's Reactive features through a practical example.
You will mostly need these 3 classes Javadoc:
- [Flux](http://projectreactor.io/docs/core/release/api/reactor/core/publisher/Flux.html)
- [Mono](http://projectreactor.io/docs/core/release/api/reactor/core/publisher/Mono.html)
- [StepVerifier](http://projectreactor.io/docs/test/release/api/reactor/test/StepVerifier.html)
To do this workshop, you just have to:- Have [Java 8](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) and a Java IDE ([IntelliJ IDEA](https://www.jetbrains.com/idea/) for example) installed with Maven support
- Clone/[Download](https://github.com/mp911de/reactive-spring/archive/initial.zip) this repository (or your fork)
- Import the project as a Maven one in your IDE
- Make sure that the language level is set to Java 8 in your IDE project settings
- Fix the TODO one by one in StepX test classes to make unit tests green
Once you mastered the basics, you can continue with Spring WebFlux and Spring Data examples that explain reactive
programming models with web applications and NoSQL data access.The solution is available in the [`main`](https://github.com/mp911de/reactive-spring/tree/main) branch ([download](https://github.com/mp911de/reactive-spring/archive/main.zip)) to compare, when you have finished, with what you have done.
## License
This code is licensed under the [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0).