基于 RxJava 响应式框架 Datamill

码农软件 · 软件分类 · 响应式 Web 框架 · 2019-03-12 08:44:01

软件介绍

基于RxJava 的函数式 Reactive 风格的 Java web 框架。

示例代码:

public static void main(String[] args) {    // Note the Server class here is foundation.stack.datamill.http.Server
    Server server = new Server(
        rb -> rb.ifMethodAndUriMatch(Method.GET, "/status", r -> r.respond(b -> b.ok()))
            .elseIfMethodAndUriMatch(Method.GET, "/hello", r -> r.respond(b -> b.ok("Hello world!")))
            .orElse(r -> r.respond(b -> b.notFound())));

    server.listen(8081);
}

本文地址:https://codercto.com/soft/d/1165.html

Machine Learning in Action

Machine Learning in Action

Peter Harrington / Manning Publications / 2012-4-19 / GBP 29.99

It's been said that data is the new "dirt"—the raw material from which and on which you build the structures of the modern world. And like dirt, data can seem like a limitless, undifferentiated mass. ......一起来看看 《Machine Learning in Action》 这本书的介绍吧!

在线进制转换器
在线进制转换器

各进制数互转换器

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具