| name | kotlin-patterns |
| description | 코루틴, 널 안전성, DSL 빌더를 사용하여 견고하고 효율적이며 유지보수가 쉬운 코틀린 애플리케이션을 구축하기 위한 관용적인 패턴, 모범 사례 및 컨벤션입니다. |
| origin | ECC |
코틀린 개발 패턴 (Kotlin Development Patterns)
견고하고 효율적이며 유지보수가 쉬운 애플리케이션을 구축하기 위한 관용적인(idiomatic) 코틀린 패턴과 모범 사례입니다.
사용 시점
- 새로운 코틀린 코드를 작성할 때
- 코틀린 코드를 리뷰할 때
- 기존 코틀린 코드를 리팩터링할 때
- 코틀린 모듈 또는 라이브러리를 설계할 때
- Gradle 코틀린 DSL 빌드를 구성할 때
동작 방식
이 스킬은 7가지 핵심 영역에서 관용적인 코틀린 컨벤션을 적용합니다: 타입 시스템과 안전 호출 연산자를 사용한 널 안전성, 데이터 클래스에서 val과 copy()를 통한 불변성 유지, 철저한 타입 계층 구조를 위한 봉인된(sealed) 클래스 및 인터페이스 사용, 코루틴과 Flow를 활용한 구조적 동시성, 상속 없이 기능을 추가하는 확장 함수, @DslMarker와 수신 객체 지정 람다를 사용한 타입 안전 DSL 빌더, 그리고 빌드 구성을 위한 Gradle 코틀린 DSL입니다.
예시
엘비스 연산자를 사용한 널 안전성:
fun getUserEmail(userId: String): String {
val user = userRepository.findById(userId)
return user?.email ?: "unknown@example.com"
}
철저한 결과 처리를 위한 봉인된 클래스:
sealed class Result<out T> {
data class Success<T>(val data: T) : Result<T>()
data class Failure(val error: AppError) : Result<Nothing>()
data object Loading : Result<Nothing>()
}
async/await를 사용한 구조적 동시성:
suspend fun fetchUserWithPosts(userId: String): UserProfile =
coroutineScope {
val user = async { userService.getUser(userId) }
val posts = async { postService.getUserPosts(userId) }
UserProfile(user = user.await(), posts = posts.await())
}
핵심 원칙
1. 널 안전성 (Null Safety)
코틀린의 타입 시스템은 널이 될 수 있는 타입과 널이 될 수 없는 타입을 구분합니다. 이를 최대한 활용하세요.
fun getUser(id: String): User {
return userRepository.findById(id)
?: throw UserNotFoundException("User $id not found")
}
fun getUserEmail(userId: String): String {
val user = userRepository.findById(userId)
return user?.email ?: "unknown@example.com"
}
fun getUserEmail(userId: String): String {
val user = userRepository.findById(userId)
return user!!.email
}
2. 기본값으로서의 불변성 (Immutability by Default)
var보다는 val을, 가변 컬렉션보다는 불변 컬렉션을 우선적으로 사용하세요.
data class User(
val id: String,
val name: String,
val email: String,
)
fun updateEmail(user: User, newEmail: String): User =
user.copy(email = newEmail)
val users: List<User> = listOf(user1, user2)
val filtered = users.filter { it.email.isNotBlank() }
var currentUser: User? = null
val mutableUsers = mutableListOf<User>()
3. 표현식 본문 및 단일 표현식 함수
간결하고 읽기 쉬운 함수를 위해 표현식 본문(expression bodies)을 사용하세요.
fun isAdult(age: Int): Boolean = age >= 18
fun formatFullName(first: String, last: String): String =
"$first $last".trim()
fun User.displayName(): String =
name.ifBlank { email.substringBefore('@') }
fun statusMessage(code: Int): String = when (code) {
200 -> "OK"
404 -> "Not Found"
500 -> "Internal Server Error"
else -> "Unknown status: $code"
}
fun isAdult(age: Int): Boolean {
return age >= 18
}
4. 값 객체를 위한 데이터 클래스
주로 데이터를 담는 타입에는 데이터 클래스를 사용하세요.
data class CreateUserRequest(
val name: String,
val email: String,
val role: Role = Role.USER,
)
@JvmInline
value class UserId(val value: String) {
init {
require(value.isNotBlank()) { "UserId cannot be blank" }
}
}
@JvmInline
value class Email(val value: String) {
init {
require('@' in value) { "Invalid email: $value" }
}
}
fun getUser(id: UserId): User = userRepository.findById(id)
봉인된 클래스 및 인터페이스 (Sealed Classes and Interfaces)
제한된 계층 구조 모델링
sealed class Result<out T> {
data class Success<T>(val data: T) : Result<T>()
data class Failure(val error: AppError) : Result<Nothing>()
data object Loading : Result<Nothing>()
}
fun <T> Result<T>.getOrNull(): T? = when (this) {
is Result.Success -> data
is Result.Failure -> null
is Result.Loading -> null
}
fun <T> Result<T>.getOrThrow(): T = when (this) {
is Result.Success -> data
is Result.Failure -> throw error.toException()
is Result.Loading -> throw IllegalStateException("Still loading")
}
API 응답을 위한 봉인된 인터페이스
sealed interface ApiError {
val message: String
data class NotFound(override val message: String) : ApiError
data class Unauthorized(override val message: String) : ApiError
data class Validation(
override val message: String,
val field: String,
) : ApiError
data class Internal(
override val message: String,
val cause: Throwable? = null,
) : ApiError
}
fun ApiError.toStatusCode(): Int = when (this) {
is ApiError.NotFound -> 404
is ApiError.Unauthorized -> 401
is ApiError.Validation -> 422
is ApiError.Internal -> 500
}
범위 함수 (Scope Functions)
용도별 선택
val length: Int? = name?.let { it.trim().length }
val user = User().apply {
name = "Alice"
email = "alice@example.com"
}
val user = createUser(request).also { logger.info("Created user: ${it.id}") }
val result = connection.run {
prepareStatement(sql)
executeQuery()
}
val csv = with(StringBuilder()) {
appendLine("name,email")
users.forEach { appendLine("${it.name},${it.email}") }
toString()
}
안티 패턴
user?.let { u ->
u.address?.let { addr ->
addr.city?.let { city ->
println(city)
}
}
}
val city = user?.address?.city
city?.let { println(it) }
확장 함수 (Extension Functions)
상속 없이 기능 추가하기
fun String.toSlug(): String =
lowercase()
.replace(Regex("[^a-z0-9\\s-]"), "")
.replace(Regex("\\s+"), "-")
.trim('-')
fun Instant.toLocalDate(zone: ZoneId = ZoneId.systemDefault()): LocalDate =
atZone(zone).toLocalDate()
fun <T> List<T>.second(): T = this[1]
fun <T> List<T>.secondOrNull(): T? = getOrNull(1)
class UserService {
private fun User.isActive(): Boolean =
status == Status.ACTIVE && lastLogin.isAfter(Instant.now().minus(30, ChronoUnit.DAYS))
fun getActiveUsers(): List<User> = userRepository.findAll().filter { it.isActive() }
}
코루틴 (Coroutines)
구조적 동시성 (Structured Concurrency)
suspend fun fetchUserWithPosts(userId: String): UserProfile =
coroutineScope {
val userDeferred = async { userService.getUser(userId) }
val postsDeferred = async { postService.getUserPosts(userId) }
UserProfile(
user = userDeferred.await(),
posts = postsDeferred.await(),
)
}
suspend fun fetchDashboard(userId: String): Dashboard =
supervisorScope {
val user = async { userService.getUser(userId) }
val notifications = async { notificationService.getRecent(userId) }
val recommendations = async { recommendationService.getFor(userId) }
Dashboard(
user = user.await(),
notifications = try {
notifications.await()
} catch (e: CancellationException) {
throw e
} catch (e: Exception) {
emptyList()
},
recommendations = try {
recommendations.await()
} catch (e: CancellationException) {
throw e
} catch (e: Exception) {
emptyList()
},
)
}
리액티브 스트림을 위한 Flow
fun observeUsers(): Flow<List<User>> = flow {
while (currentCoroutineContext().isActive) {
val users = userRepository.findAll()
emit(users)
delay(5.seconds)
}
}.catch { e ->
logger.error("Error observing users", e)
emit(emptyList())
}
fun searchUsers(query: Flow<String>): Flow<List<User>> =
query
.debounce(300.milliseconds)
.distinctUntilChanged()
.filter { it.length >= 2 }
.mapLatest { q -> userRepository.search(q) }
.catch { emit(emptyList()) }
취소 및 정리
suspend fun processItems(items: List<Item>) {
items.forEach { item ->
ensureActive()
processItem(item)
}
}
suspend fun acquireAndProcess() {
val resource = acquireResource()
try {
resource.process()
} finally {
withContext(NonCancellable) {
resource.release()
}
}
}
위임 (Delegation)
프로퍼티 위임
val expensiveData: List<User> by lazy {
userRepository.findAll()
}
var name: String by Delegates.observable("initial") { _, old, new ->
logger.info("Name changed from '$old' to '$new'")
}
class Config(private val map: Map<String, Any?>) {
val host: String by map
val port: Int by map
val debug: Boolean by map
}
val config = Config(mapOf("host" to "localhost", "port" to 8080, "debug" to true))
인터페이스 위임
class LoggingUserRepository(
private val delegate: UserRepository,
private val logger: Logger,
) : UserRepository by delegate {
override suspend fun findById(id: String): User? {
logger.info("Finding user by id: $id")
return delegate.findById(id).also {
logger.info("Found user: ${it?.name ?: "null"}")
}
}
}
DSL 빌더 (DSL Builders)
타입 안전 빌더
@DslMarker
annotation class HtmlDsl
@HtmlDsl
class HTML {
private val children = mutableListOf<Element>()
fun head(init: Head.() -> Unit) {
children += Head().apply(init)
}
fun body(init: Body.() -> Unit) {
children += Body().apply(init)
}
override fun toString(): String = children.joinToString("\n")
}
fun html(init: HTML.() -> Unit): HTML = HTML().apply(init)
val page = html {
head { title("My Page") }
body {
h1("Welcome")
p("Hello, World!")
}
}
구성 DSL
data class ServerConfig(
val host: String = "0.0.0.0",
val port: Int = 8080,
val ssl: SslConfig? = null,
val database: DatabaseConfig? = null,
)
data class SslConfig(val certPath: String, val keyPath: String)
data class DatabaseConfig(val url: String, val maxPoolSize: Int = 10)
class ServerConfigBuilder {
var host: String = "0.0.0.0"
var port: Int = 8080
private var ssl: SslConfig? = null
private var database: DatabaseConfig? = null
fun ssl(certPath: String, keyPath: String) {
ssl = SslConfig(certPath, keyPath)
}
fun database(url: String, maxPoolSize: Int = 10) {
database = DatabaseConfig(url, maxPoolSize)
}
fun : ServerConfig = ServerConfig(host, port, ssl, database)
}
: ServerConfig =
ServerConfigBuilder().apply().build()
config = serverConfig {
host =
port =
ssl(, )
database(, maxPoolSize = )
}
지연 평가를 위한 시퀀스 (Sequences)
val result = users.asSequence()
.filter { it.isActive }
.map { it.email }
.filter { it.endsWith("@company.com") }
.take(10)
.toList()
val fibonacci: Sequence<Long> = sequence {
var a = 0L
var b = 1L
while (true) {
yield(a)
val next = a + b
a = b
b = next
}
}
val first20 = fibonacci.take(20).toList()
Gradle 코틀린 DSL
build.gradle.kts 구성
plugins {
kotlin("jvm") version "2.3.10"
kotlin("plugin.serialization") version "2.3.10"
id("io.ktor.plugin") version "3.4.0"
id("org.jetbrains.kotlinx.kover") version "0.9.7"
id("io.gitlab.arturbosch.detekt") version "1.23.8"
}
group = "com.example"
version = "1.0.0"
kotlin {
jvmToolchain(21)
}
dependencies {
implementation("io.ktor:ktor-server-core:3.4.0")
implementation("io.ktor:ktor-server-netty:3.4.0")
implementation("io.ktor:ktor-server-content-negotiation:3.4.0")
implementation("io.ktor:ktor-serialization-kotlinx-json:3.4.0")
implementation("org.jetbrains.exposed:exposed-core:1.0.0")
implementation("org.jetbrains.exposed:exposed-dao:1.0.0")
implementation("org.jetbrains.exposed:exposed-jdbc:1.0.0")
implementation("org.jetbrains.exposed:exposed-kotlin-datetime:1.0.0")
implementation("io.insert-koin:koin-ktor:4.2.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2")
testImplementation("io.kotest:kotest-runner-junit5:6.1.4")
testImplementation("io.kotest:kotest-assertions-core:6.1.4")
testImplementation("io.kotest:kotest-property:6.1.4")
testImplementation("io.mockk:mockk:1.14.9")
testImplementation("io.ktor:ktor-server-test-host:3.4.0")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.2")
}
tasks.withType<Test> {
useJUnitPlatform()
}
detekt {
config.setFrom(files("config/detekt/detekt.yml"))
buildUponDefaultConfig =
}
에러 처리 패턴
도메인 연산을 위한 Result 타입
suspend fun createUser(request: CreateUserRequest): Result<User> = runCatching {
require(request.name.isNotBlank()) { "이름은 비어 있을 수 없습니다" }
require('@' in request.email) { "유효하지 않은 이메일 형식입니다" }
val user = User(
id = UserId(UUID.randomUUID().toString()),
name = request.name,
email = Email(request.email),
)
userRepository.save(user)
user
}
val displayName = createUser(request)
.map { it.name }
.getOrElse { "Unknown" }
require, check, error
fun withdraw(account: Account, amount: Money): Account {
require(amount.value > 0) { "금액은 양수여야 합니다: $amount" }
check(account.balance >= amount) { "잔액이 부족합니다: ${account.balance} < $amount" }
return account.copy(balance = account.balance - amount)
}
컬렉션 연산
관용적인 컬렉션 처리
val activeAdminEmails: List<String> = users
.filter { it.role == Role.ADMIN && it.isActive }
.sortedBy { it.name }
.map { it.email }
val usersByRole: Map<Role, List<User>> = users.groupBy { it.role }
val oldestByRole: Map<Role, User?> = users.groupBy { it.role }
.mapValues { (_, users) -> users.minByOrNull { it.createdAt } }
val usersById: Map<UserId, User> = users.associateBy { it.id }
val (active, inactive) = users.partition { it.isActive }
빠른 참조: 코틀린 관용구
| 관용구 | 설명 |
|---|
var보다 val | 불변 변수를 우선 사용 |
data class | equals/hashCode/copy가 필요한 값 객체용 |
sealed class/interface | 제한된 타입 계층 구조용 |
value class | 오버헤드 없는 타입 안전 래퍼용 |
표현식 when | 철저한 패턴 매칭 |
안전 호출 ?. | 널 안전 멤버 접근 |
엘비스 ?: | 널일 경우의 기본값 지정 |
let/apply/also/run/with | 깔끔한 코드를 위한 범위 함수 |
| 확장 함수 | 상속 없이 기능 추가 |
copy() | 데이터 클래스의 불변 업데이트 |
require/check | 전제 조건 단언(assertion) |
코루틴 async/await | 구조적 동시 실행 |
Flow | 차가운 리액티브 스트림 |
sequence | 지연 평가 컬렉션 |
위임 by | 상속 없이 구현 재사용 |
피해야 할 안티 패턴
val name = user!!.name
fun getLength(s: String) = s.length
fun getLength(s: String?) = s?.length ?: 0
data class MutableUser(var name: String, var email: String)
try {
val user = findUser(id)
} catch (e: NotFoundException) {
}
val user: User? = findUserOrNull(id)
GlobalScope.launch { }
coroutineScope {
launch { }
}
user?.let { u ->
u.address?.let { a ->
a.city?.let { c -> process(c) }
}
}
user?.address?.city?.let { process(it) }
기억하세요: 코틀린 코드는 간결하면서도 읽기 쉬워야 합니다. 안전을 위해 타입 시스템을 활용하고, 불변성을 선호하며, 동시성을 위해 코루틴을 사용하세요. 의심스러울 때는 컴파일러의 도움을 받으세요.