协程

Kotlin 协程 是可挂起计算的实例,允许以命令式方式编写非阻塞代码。在语言层面,suspend 函数为异步操作提供了抽象,而在库层面,kotlinx.coroutines 提供了诸如 async { } 等函数以及诸如 Flow 等类型。

Spring Data 模块在以下范围提供对协程的支持

依赖项

当 classpath 中包含 kotlinx-coroutines-corekotlinx-coroutines-reactivekotlinx-coroutines-reactor 依赖项时,会启用协程支持

要在 Maven pom.xml 中添加的依赖项
<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 及更高版本。

响应式如何转换为协程?

对于返回值,从响应式 API 到协程 API 的转换如下

  • fun handler(): Mono<Void> 变为 suspend fun handler()

  • fun handler(): Mono<T> 变为 suspend fun handler(): Tsuspend fun handler(): T?,具体取决于 Mono 是否可以为空(优势在于具有更强的静态类型)

  • fun handler(): Flux<T> 变为 fun handler(): Flow<T>

Flow 是协程世界中的 Flux 等价物,适用于热流或冷流、有限或无限流,主要区别如下

  • Flow 是推模式,而 Flux 是推拉混合模式

  • 背压通过挂起函数实现

  • Flow 只有一个 单一的挂起 collect 方法,并且操作符作为扩展实现

  • 借助协程,操作符易于实现

  • 扩展允许向 Flow 添加自定义操作符

  • Collect 操作是挂起函数

  • 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 的协程暴露了数据访问的非阻塞特性。协程仓库上的方法可以由查询方法或自定义实现支持。如果自定义方法是可挂起的,则调用自定义实现方法会将协程调用传播到实际实现方法,而无需该实现方法返回诸如 MonoFlux 等响应式类型。

请注意,协程上下文是否可用取决于方法声明。要保留对上下文的访问,可以使用 suspend 声明方法,或者返回一个支持上下文传播的类型,例如 Flow

  • suspend fun findOne(id: String): User: 通过挂起一次性同步检索数据。

  • fun findByFirstname(firstname: String): Flow<User>: 检索数据流。Flow 会被急切地创建,而数据则在 Flow 交互(Flow.collect(…))时获取。

  • fun getUser(): User: 一次性检索数据,**阻塞线程**且不传播上下文。应避免使用这种方式。

只有当仓库扩展 CoroutineCrudRepository 接口时,协程仓库才会被发现。