精簡
立基於 Kotlin 語言的特性
我們能很精簡的撰寫出想要的功能
不需要大量的冗餘程式碼。
官方支援
由於 Ktor 是 Kotlin 語言的開發公司 JetBrains 所建立
所以在和 Kotlin 的搭配
以及 IntelliJ IDEA 這個 IDE 上的搭配度都非常的好
容易使用
透過 Ktor 的設計
不管是建立 API,或者撰寫網頁顯示
都非常的容易
比方說,建立 Hello World 的路徑是
get("/hello") {
call.respondText(
"HELLO WORLD!",
contentType = ContentType.Text.Plain
)
}
Kotlin異步處理
利用 Kotlin 內建的 coroutine
Ktor 可以很簡單的對需求進行非同步處理
比方說,下方的程式碼會先存取 http://localhost/path1
不等回傳就繼續存取 http://localhost/path2
等回傳後分別將回傳值存入 firstRequestContent
和 secondRequestContent
val client = HttpClient(CIO)
val firstRequest: Deferred<String> = async { client.get("http://localhost/path1") }
val secondRequest: Deferred<String> = async { client.get("http://localhost/path2") }
val firstRequestContent = firstRequest.await()
val secondRequestContent = secondRequest.await()
Kotlin