티스토리 뷰
1. 코루틴
- 코루틴(Coroutine)은 코틀린에서 비동기-논블로킹 프로그래밍을 명령형 스타일로 작성할 수 있도록 도와주는 라이브러리이다.
- 코루틴은 멀티 플랫폼을 지원하여 코틀린을 사용하는 안드로이드, 서버 등 여려 환경에서 사용할 수 있다.
- 코루틴은 일시 중단 가능한 함수(suspend function)를 통해 스레드가 실행을 잠시 중단했다가 중단한 지점부터 다시 재개(resume)할 수 있다.
코루틴을 사용한 구조적 동시성 예시
suspend fun combineApi() = coroutineScope {
val response1 = async { getApi1() }
val response2 = async { getApi2() }
return ApiResult {
response1.await()
response2.await()
}
}
2. 스프링 WebFlux의 코루틴 지원
- 스프링 WebFlux 공식문서의 코틀린 예제들을 보면 모두 코루틴 기반의 예제를 소개하고 있다.
class PersonHandler(private val repository: PersonRepository) {
suspend fun listPeople(request: ServerRequest): ServerResponse {
val people: Flow<Person> = repository.allPeople()
return ok().contentType(APPLICATION_JSON).bodyAndAwait(people);
}
suspend fun createPerson(request: ServerRequest): ServerResponse {
val person = request.awaitBody<Person>()
repository.savePerson(person)
return ok().buildAndAwait()
}
}
- 스프링 MVC, 스프링 WebFlux 모두 코루틴을 지원하여 의존성만 추가하면 바로 사용 가능
- 아래 의존성을 build.gradle.kts에 추가하면 코루틴을 사용할 수 있다.
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:${version}")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactor:${version}")
}
리액티브가 코루틴으로 변환되는 방식
// Mono -> suspend
fun handler(): Mono<Void> -> suspend fun handler()
// Flux -> Flow
fun handler(): Flux<T> -> fun handler(): Flow<T>
- Mono는 suspedn 함수로 변환
- Flux는 Flow로 변환
코루틴을 적용한 컨트롤러 코드
@RestController
class UserController(
private val userService: UserService,
private val userDetailService: UserDetailService,
) {
@GetMapping("/{id}")
suspend fun get(@PathVariable id: Long) : User {
return userService.getById(id)
}
@GetMapping("/users")
suspend fun gets() = withContext(Dispatchers.IO) {
val usersDeffered = async { userService.gets() }
val userDetailsDeffered = async { userDetailService.gets() }
return UserList(usersDeffered.await(), userDetailsDeffered.await())
}
}
코루틴을 사용한 WebClient
val client = WebClient.create("https://example.org")
val result = client.get()
.uri("/persons/{id}", id)
.retrieve()
.awaitBody<Person>()
Spring Data R2DBC의 ReactiveCrudRepository에서 코루틴 적용
interface ContentReactiveRepository: ReactiveCrudRepository<Content, Long> {
fun findByUserId(userId: Long): Mono<Content>
fun findAllByUserId(userId: Long): Flux<Content>
}
class ContentService (
val repository: ContentReactiveRepository
) {
fun findByUserIdMono(userId: Long): Mono<Content> {
return repository.findByUserId(userId)
}
suspend findByUserId(userId: Long): Content {
return repository.findByUserId(userId).awaitSingle()
}
}
CoroutineCrudRepository를 사용하면 awaitXXX 코드 없이 사용 가능
interface ContentCoroutineRepository: CoroutineCrudRepository<Content, Long> {
suspend fun findByUserId(userId: Long): Content?
fun findAllByUserId(userId: Long): Flow<Content>
}
class ContentService(
val repository: ContentCoroutineRepository
) {
suspend findByUserId(userId: Long): Content {
return repository.findByUserId(userId)
}
}
Reference
'스프링' 카테고리의 다른 글
스프링 데이터 R2DBC (0) | 2022.09.20 |
---|---|
스프링 WebFlux (1) | 2022.09.19 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 대수확장성
- 프로세스 컴파일
- 프로그래밍 패러다임
- 클러스터형인덱스
- 인덱스최적화
- 프로세스
- 직접매핑
- 정렬병합조인
- 스프링 R2DBC
- 연관매핑
- 캐시매핑
- 프로세스와 스레드
- 스프링 WebFlux
- 프로그래밍
- 네트워크 기초
- 세컨더리인덱스
- 코틀린
- Design Pattern
- 메모리 계층
- 보이스코드정규형
- 스레드
- 디자인 패턴
- 자바
- 함수형 프로그래밍
- 직접연관매핑
- 선언형 프로그래밍
- 네트워크
- 중첩루프조인
- 불연속할당
- java
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함