美文网首页
Hunt framework 2.0.0 发布,简单且高性能的

Hunt framework 2.0.0 发布,简单且高性能的

作者: 邹佳庆 | 来源:发表于2019-02-01 04:42 被阅读0次

    HuntLabs 很高兴的赶在大年三十之前宣布:通过 Hunt framework 1.0.0 后面的一些版本( 1.1.x / 1.5.x)迭代终于迎来 2.0.0,这个版本对我们来说很重要,对整个框架的完整性和易用性再一次得到了提升。

    Hunt framework 是一个使用 Dlang 语言开发的全栈 web 框架,易用性和完整性都贴近于 Laravel / Django / Spring boot 等主流框架的设计,优势主要体现在部署方面,不需要搭建运行环境就可开启 web 服务。而且 D 语言自身是一个性能极高的编译型语言,我们可以基于 hunt framework 非常简单的开发出高性能的 web 服务。

    版本主要更新特性

    1. 更多 HTTP 标准 API 进行支持
    2. 完成 HTTP 2.0 支持,包含 H2 和 H2C
    3. I/O 模块性能改进
    4. Collie 库使用新的 hunt-http 库进行替代
    5. 数据库相关模块的增强,包含分页器和连接池修复
    6. 新的模板引擎解析器,更好的兼容 twig 和 jinja2 语法
    7. 表单校验器的实现
    8. 面包屑模块设计与实现
    9. I18N 多语言模块完整的实现
    10. 基于 STOMP 协议的 WebSocket 模块实现
    11. 移植了 java 的大部分容器对象方便开发者使用
    12. 加强了单元测试模块和更多的示例代码

    依赖的库进行升级

    Name Version
    hunt 1.0.0
    hunt-cache 0.2.2
    hunt-database 1.1.0
    hunt-entity 2.2.0
    hunt-http 0.1.1
    hunt-imf 0.0.4
    hunt-net 0.1.0
    hunt-security 0.0.6
    hunt-sql 1.0.5
    hunt-stomp 0.0.3
    hunt-trace 0.1.7
    hunt-validation 0.0.2
    boringssl 0.0.1
    dredis 0.0.9
    libmemcached 1.1.1
    openssl 1.1.6+1.0.1g
    protobuf 0.4.0
    rocksdb 0.0.7

    I18N 多语言示例代码

    定义语言包在 resources/translations/en-us/messages.ini

        WELCOME=Welcome to the world of hunt framework.
        VERSION_TITLE=Hunt framework version %s
    

    在配置文件设置默认语言 config/application.conf

        hunt.application.defaultLanguage = en-us
        hunt.application.languages = zh-cn,en-us
    

    在模板中使用语言词条

       <title>{{ trans("VERSION_TITLE", huntVersion) }}</title>
    

    在控制器中使用语言词条

       string s = trans("VERSION_TITLE", "2.0.0");
    

    面包屑使用

    初始化面包屑配置

       app.onBreadcrumbsInitializing((BreadcrumbsManager breadcrumbs) {
                breadcrumbs.register("home", (Breadcrumbs trail, Object[] params...) {
                    trail.push("Home", "/home");
                });
    
                breadcrumbs.register("index.show", (Breadcrumbs trail, Object[] params...) {
                    trail.parent("home");
                    trail.push("About", url("index.show"));
                });
        }
    

    页面的面包屑进行赋值

    view.assign("breadcrumbs", breadcrumbsManager.generate("home"));
    

    视图文件代码

       {% if breadcrumbs.defined and breadcrumbs.length>0 %}
            <div class="row">
                <div class="col">
                    <ol class="breadcrumb">
                        {% for item in breadcrumbs %}
                            {% if item.link and not loop.last %}
                                <li class="breadcrumb-item"><a href="{{ item.link }}">{{ item.title }}</a></li>
                            {% else %}
                                <li class="breadcrumb-item active">{{ item.title }}</li>
                            {% endif %}
                        {% endfor %}
                    </ol>
                </div>
            </div>
            {% endif %}
    

    HTTP 方面一些改进

    HTTP client

    HTTP server

    WebSocket client

    WebSocket server

    HTTP2

    See: https://github.com/huntlabs/hunt-http/tree/master/examples

    文件上传支持改进

           @Action
            string upload()
            {
                string message;
    
                if (request.hasFile("file1"))
                {
                    auto file = request.file("file1");
    
                    if (file.isValid())
                    {
                        // File save path: file.path()
                        // Origin name: file.originalName()
                        // File extension: file.extension()
                        // File mimetype: file.mimeType()
    
                        if (file.store("uploads/myfile.zip"))
                        {
                            message = "upload is successed";
                        }
                        else
                        {
                            message = "save as error";
                        }
                    }
                    else
                    {
                        message = "file is not valid";
                    }
                }
                else
                {
                    message = "not get this file";
                }
    
                return message;
            }
    

    表单验证示例代码

    定义表单对象

       module app.form.LoginForm;
    
        import hunt;
    
        class LoginForm : Form
        {
            mixin MakeForm;
    
            @Length(6,20)
            string username;
    
            @Length(8,16)
            string password;
        }
    

    验证

       @Action
        string login(LoginForm loginForm)
        {
            string message;
            auto result = loginForm.valid();
    
            // TODO
            if(!result.isValid())
            {
               message =  "Valid error message : " ~ result.messages();
            }
            else
            {
                message = "OK";
            }
    
            return message;
        }
    

    文件资源 Response 简化改进

            @Action
            Response download()
            {
                return new FileResponse("/tmp/orders-20190122.zip");
            }
    

    数据库方面改进

    加强 Entity & EQL 的分页支持:

    https://github.com/huntlabs/hunt-entity/wiki/Pagination

    EQL 增强

    https://github.com/huntlabs/hunt-entity/wiki/EQL

    Validation

    https://github.com/huntlabs/hunt-entity/wiki/Validation

    内置的链路跟踪初步支持

    New modules used to tracing the requests in microservice architectures.

    I/O 性能测试结果

    The core I/O library is refactored, and is called Hunt.

    Benchmark

    See: https://github.com/huntlabs/hunt-minihttp

    更多示例代码

    hunt-skeleton: https://github.com/huntlabs/hunt-skeleton
    hunt-examples: https://github.com/huntlabs/hunt-examples
    hunt-minihttp: https://github.com/huntlabs/hunt-minihttp
    hunt-http: https://github.com/huntlabs/hunt-http/tree/master/examples

    HuntLabs 官网

    https://www.huntlabs.net/

    Github 代码仓库

    https://github.com/huntlabs/hunt-framework

    Gitee 码云代码仓库

    https://gitee.com/huntlabs/hunt-framework

    相关文章

      网友评论

          本文标题:Hunt framework 2.0.0 发布,简单且高性能的

          本文链接:https://www.haomeiwen.com/subject/ixsrsqtx.html