소프트웨어 개발/Ktor (1) 썸네일형 리스트형 Structured Handling of HTTP Requests Routing is a feature that is installed into an Application to simplify and structure page request handling. application.install(Routing) { get("/") { call.respondText("Hello, World!") } get("/bye") { call.respondText("Good bye, World!") } } get, post, put, delete, head and options functions are convenience shortcuts to a flexible and powerful routing system. In particular, get is an alias to rou.. 이전 1 다음