在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):jooby-project/jooby开源软件地址(OpenSource Url):https://github.com/jooby-project/jooby开源编程语言(OpenSource Language):Java 97.0%开源软件介绍(OpenSource Introduction):∞ do more, more easilyJooby is a modern, performant and easy to use web framework for Java and Kotlin built on top of your favorite web server. Java: import static org.jooby.Jooby.runApp;
public class App {
public static void main(final String[] args) {
runApp(args, app -> {
app.get("/", ctx -> "Welcome to Jooby!");
});
}
} Kotlin: import org.jooby.runApp
fun main(args: Array<String>) {
runApp(args) {
get ("/") {
"Welcome to Jooby!"
}
}
}
documentationDocumentation is available at https://jooby.io helpdonate & support1.x versionDocumentation for 1.x is available at https://jooby.io/v1 Source code for 1.x is available at the 1.x branch authorlicense |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论