Importar las librerías
1 2 3 |
io.ktor:ktor-server-netty:1.6.7 org.slf4j:slf4j-simple:2.0.0-alpha1 org.slf4j:slf4j-simple:1.7.32 |
Código para crear un servicio web en Kotlin
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import io.ktor.application.* import io.ktor.features.* import io.ktor.response.* import io.ktor.routing.* import io.ktor.server.engine.* import io.ktor.server.netty.* fun main() { embeddedServer(Netty, port = 8080) { install(DefaultHeaders) install(CallLogging) install(Routing) { get("/") { call.respondText("¡Hola! Este es un servicio web en Kotlin con Ktor.") } } }.start(wait = true) } |