协程
依赖项
当 kotlinx-coroutines-core
、kotlinx-coroutines-reactive
和 kotlinx-coroutines-reactor
依赖项在类路径中时,将启用协程支持
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-core</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-reactive</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-reactor</artifactId>
</dependency>
支持的版本 1.3.0 及更高版本。
|
Reactive 如何转换为协程?
对于返回值,从 Reactive 到协程 API 的转换如下
-
fun handler(): Mono<Void>
变为suspend fun handler()
-
fun handler(): Mono<T>
变为suspend fun handler(): T
或suspend fun handler(): T?
,具体取决于Mono
是否可以为空(具有更静态类型的优点) -
fun handler(): Flux<T>
变为fun handler(): Flow<T>
Flow
是协程世界中的 Flux
等价物,适用于热流或冷流、有限流或无限流,具有以下主要区别
-
Flow
是基于推送的,而Flux
是基于推送-拉取的混合 -
反压是通过挂起函数实现的
-
Flow
只有一个 单个挂起collect
方法,并且操作符作为 扩展 实现 -
操作符易于实现,这要归功于协程
-
扩展允许向
Flow
添加自定义操作符 -
收集操作是挂起函数
-
map
操作符 支持异步操作(无需flatMap
),因为它采用挂起函数参数
阅读这篇博客文章 使用 Spring、协程和 Kotlin Flow 实现响应式,了解更多详细信息,包括如何使用协程并发运行代码。
存储库
以下是协程存储库的一个示例
interface CoroutineRepository : CoroutineCrudRepository<User, String> {
suspend fun findOne(id: String): User
fun findByFirstname(firstname: String): Flow<User>
suspend fun findAllByFirstname(id: String): List<User>
}
协程存储库建立在响应式存储库之上,以通过 Kotlin 的协程公开数据访问的非阻塞特性。协程存储库上的方法可以由查询方法或自定义实现支持。如果自定义方法可 suspend
,则调用自定义实现方法会将协程调用传播到实际实现方法,而无需实现方法返回响应式类型(如 Mono
或 Flux
)。
请注意,根据方法声明,协程上下文可能可用,也可能不可用。要保留对上下文的访问权限,请使用 suspend
声明你的方法,或返回启用上下文传播的类型,如 Flow
。
-
suspend fun findOne(id: String): User
:一次性同步地通过挂起检索数据。 -
fun findByFirstname(firstname: String): Flow<User>
:检索数据流。Flow
是急切创建的,而数据是在Flow
交互(Flow.collect(…)
)时获取的。 -
fun getUser(): User
:一次性检索数据,阻塞线程且不传播上下文。应避免这样做。
仅当存储库扩展 CoroutineCrudRepository 接口时,才会发现协程存储库。
|