Ktor是一个使用Kotlin以最小的成本快速创建Web应用程序的框架。
Ktor是一个用于在连接系统(connectedsystems)中构建异步服务器和客户端的Kotlin框架。它由Kotlin团队创建,因此,它充分利用了Kotlin的语言特性,为开发者提供出色的体验和运行时性能。
import io.ktor.server.netty.*import io.ktor.routing.*import io.ktor.application.*import io.ktor.http.*import io.ktor.response.*import io.ktor.server.engine.*fun main(args: Array<String>) { embeddedServer(Netty, 8080) { routing { get("/") { call.respondText("Hello, world!", ContentType.Text.Html) } } }.start(wait = true)}在localhost:8080上运行嵌入式Web服务器
当收到根路径的GEThttp请求时,安装路由并收到 Hello,world!响应
评论