在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):ktorio/ktor开源软件地址(OpenSource Url):https://github.com/ktorio/ktor开源编程语言(OpenSource Language):Kotlin 100.0%开源软件介绍(OpenSource Introduction):Ktor is an asynchronous framework for creating microservices, web applications and more. Written in Kotlin from the ground up. import io.ktor.server.netty.*
import io.ktor.server.routing.*
import io.ktor.server.application.*
import io.ktor.http.*
import io.ktor.server.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)
}
PrinciplesUnopinionatedKtor Framework doesn't impose a lot of constraints on what technology a project is going to use – logging, templating, messaging, persistence, serialization, dependency injection, etc. Sometimes it may be required to implement a simple interface, but usually it is a matter of writing a transforming or intercepting function. Features are installed into the application using a unified interception mechanism which allows building arbitrary pipelines. Ktor Applications can be hosted in any servlet container with Servlet 3.0+ API support such as Tomcat, or standalone using Netty or Jetty. Support for other hosts can be added through the unified hosting API. Ktor APIs are mostly functions calls with lambdas. Thanks to Kotlin DSL capabilities, the code looks declarative. Application composition is entirely up to the developer's choice – with functions or classes, using dependency injection framework or doing it all manually in the main function. AsynchronousThe Ktor pipeline machinery and API are utilising Kotlin coroutines to provide easy-to-use asynchronous programming model without making it too cumbersome. All host implementations are using asynchronous I/O facilities to avoid thread blocking. TestableKtor applications can be hosted in a special test environment, which emulates a web server to some extent without actually doing any networking. It provides easy way to test an application without mocking too much stuff, and still achieve good performance while validating application calls. Running integration tests with a real embedded web server are of course possible, too. JetBrains ProductKtor is an official JetBrains product and is primarily developed by the team at JetBrains, with contributions from the community. DocumentationPlease visit ktor.io for Quick Start and detailed explanations of features, usage and machinery. Reporting Issues / SupportPlease use our issue tracker for filing feature requests and bugs. If you'd like to ask a question, we recommend StackOverflow where members of the team monitor frequently. There is also community support on the Kotlin Slack Ktor channel Reporting Security VulnerabilitiesIf you find a security vulnerability in Ktor, we kindly request that you reach out to the JetBrains security team via our responsible disclosure process. InspirationsKotlin web frameworks such as Wasabi and Kara, which are currently deprecated. ContributingPlease see the contribution guide and the Code of conduct before contributing. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论