Hunt framework 2.0.0 发布,简单且高性能的 Web 服务框架

发布时间:2020-08-11 10:28:21 作者:冰力
来源:网络 阅读:250

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 服务。

版本主要更新特性

依赖的库进行升级

NameVersion
hunt1.0.0
hunt-cache0.2.2
hunt-database1.1.0
hunt-entity2.2.0
hunt-http0.1.1
hunt-imf0.0.4
hunt-net0.1.0
hunt-security0.0.6
hunt-sql1.0.5
hunt-stomp0.0.3
hunt-trace0.1.7
hunt-validation0.0.2
boringssl0.0.1
dredis0.0.9
libmemcached1.1.1
openssl1.1.6+1.0.1g
protobuf0.4.0
rocksdb0.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 方面一些改进

  1. HTTP client

  2. HTTP server

  3. WebSocket client

  4. WebSocket server

  5. 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.

Hunt framework 2.0.0 发布,简单且高性能的 Web 服务框架

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


推荐阅读:
  1. 网络设备配置与管理----使用EIGRP实现两个企业网络互联
  2. 用户账号管理、NTFS权限管理、磁盘及文件系统

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

hunt framework dlang

上一篇:湖畔大学之在湖边 ● 畅谈1号位的技术观

下一篇:iOS开发中self的用法介绍

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》