大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
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 的大部分容器对象方便开发者使用
加强了单元测试模块和更多的示例代码
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 |
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 %}HTTP 方面一些改进{% endif %}{% for item in breadcrumbs %} {% if item.link and not loop.last %}
- {{ item.title }}
{% else %}- {{ item.title }}
{% endif %} {% endfor %}
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
Validationhttps://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
https://www.huntlabs.net/
Github 代码仓库https://github.com/huntlabs/hunt-framework
Gitee 码云代码仓库https://gitee.com/huntlabs/hunt-framework