首页 > 代码库 > Spring Boot Reactive Streams
Spring Boot Reactive Streams
1 响应式编程规范
目标:provide a standard for asynchronous stream processing with non-blocking backpressure
http://www.reactive-streams.org/
https://github.com/reactive-streams/reactive-streams-jvm
https://spring.io/blog/2016/02/09/reactive-spring
A key ingredient to this effort is the Reactive Streams spec whose purpose is to provide a “standard for asynchronous stream processing with non-blocking backpressure”. The spec enables interop among disparate async component providers: from HTTP servers to web frameworks, database drivers, etc. It will be included in JDK 9 as java.util.concurrent.Flow.
2 Reactive Programming with Spring 5.0 M1
https://spring.io/blog/2016/07/28/reactive-programming-with-spring-5-0-m1
3 Demo
https://github.com/bclozel/spring-boot-web-reactive
4 Understanding Reactive types
https://spring.io/blog/2016/04/19/understanding-reactive-types
5
Spring Boot Reactive Streams