HuntLabs 很高兴的赶在大年三十之前宣布:通过 Hunt framework 1.0.0 后面的一些版本( 1.1.x / 1.5.x)迭代终于迎来 2.0.0,这个版本对我们来说很重要,对整个框架的完整性和易用性再一次得到了提升。
创新互联自2013年创立以来,是专业互联网技术服务公司,拥有项目成都做网站、成都网站制作网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元雨花做网站,已为上家服务,为雨花各地企业和个人服务,联系电话:028-86922220
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 的大部分容器对象方便开发者使用 
- 加强了单元测试模块和更多的示例代码 
依赖的库进行升级
| 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
在模板中使用语言词条
{{ trans("VERSION_TITLE", huntVersion) }} 
在控制器中使用语言词条
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 %}
    
        
            
                {% for item in breadcrumbs %}
                    {% if item.link and not loop.last %}
                        - {{ item.title }}{% else %}
- {{ item.title }}{% endif %}
                {% endfor %}
{% 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.

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
网站栏目:Huntframework2.0.0发布,简单且高性能的Web服务框架
分享URL:http://www.scyingshan.cn/article/pejgei.html

 建站
建站
 咨询
咨询 售后
售后
 建站咨询
建站咨询 
 