91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Hunt framework 2.0.0 發布,簡單且高性能的 Web 服務框架

發布時間:2020-08-11 10:28:21 來源:網絡 閱讀:257 作者:冰力 欄目:軟件技術

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

版本主要更新特性

  • 更多 HTTP 標準 API 進行支持

  • 完成 HTTP 2.0 支持,包含 H2 和 H2C

  • I/O 模塊性能改進

  • Collie 庫使用新的 hunt-http 庫進行替代

  • 數據庫相關模塊的增強,包含分頁器和連接池修復

  • 新的模板引擎解析器,更好的兼容 twig 和 jinja2 語法

  • 表單校驗器的實現

  • 面包屑模塊設計與實現

  • I18N 多語言模塊完整的實現

  • 基于 STOMP 協議的 WebSocket 模塊實現

  • 移植了 java 的大部分容器對象方便開發者使用

  • 加強了單元測試模塊和更多的示例代碼

依賴的庫進行升級

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


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

林芝县| 松原市| 高邮市| 昌江| 库车县| 高安市| 广安市| 息烽县| 乐平市| 金门县| 北辰区| 德钦县| 桐梓县| 宁化县| 新巴尔虎右旗| 唐山市| 北辰区| 双峰县| 宜兰县| 泗水县| 广东省| 乌鲁木齐县| 滨海县| 普宁市| 信宜市| 嵩明县| 吴旗县| 迭部县| 海门市| 漠河县| 论坛| 固原市| 平山县| 和平区| 梧州市| 井冈山市| 抚州市| 富川| 湘潭县| 交城县| 吴堡县|