Skip to content

Commit

Permalink
update: release note定稿
Browse files Browse the repository at this point in the history
  • Loading branch information
wendal committed Jan 15, 2017
1 parent fba0301 commit 3264211
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 9 deletions.
8 changes: 6 additions & 2 deletions doc/manual/basic/encoding.man
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
-Dfile.encoding=UTF-8
}}}

修改之后的,重启eclipse.
修改之后的,重启eclipse即可.

--------------------------------------------------------------------------------------------------------
JSP页面编码
Expand Down Expand Up @@ -108,4 +108,8 @@ Nutz的相关日志
21:22:25.146 DEBUG (MysqlJdbcExpert.java:212) checkDataSource - Mysql : character_set_results=
21:22:25.146 DEBUG (MysqlJdbcExpert.java:212) checkDataSource - Mysql : character_set_server=utf8
21:22:25.147 DEBUG (MysqlJdbcExpert.java:212) checkDataSource - Mysql : character_set_system=utf8
}}}
}}}

Default Charset的编码,在Eclipse环境内, 通过eclipse.ini调整,在tomcat内的话,通过setenv.bat调整.

mysql的编码,通过修改my.ini或jdbc url进行调整
2 changes: 2 additions & 0 deletions doc/manual/basic/maven.man
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ Nutz核心jar
}}}

快照库地址 [https://jfrog.nutz.cn/artifactory/snapshots https://jfrog.nutz.cn/artifactory/snapshots]

快照库内包含nutz主库,插件库,等快照jar

----------------------------------------------------------------------------------------------------
常用配置模板
Expand Down
4 changes: 2 additions & 2 deletions doc/manual/nutz_preface.man
Original file line number Diff line number Diff line change
Expand Up @@ -92,15 +92,15 @@ Nutz 的未来
--------------------------------------------------------------------------------------------------------
你完全可以让这个项目变得更加美好

* 上 [http://www.nutz.cn/ Nutz社区论坛] 发帖讨论
* 上 [https://www.nutz.cn/ Nutz社区论坛] 发帖讨论
* [http://xiaofeng.iteye.com/blog/549410 不编写代码,你可以能为这个项目做很多事情] @[http://xiaofeng.iteye.com hilliate]
* 你可以随时 [https://github.com/nutzam/nutz/issues/new 提交你发现的问题]
* 任何人 用 任何方式 => 指出 Nutz 的缺陷,都是被欢迎的
* 如果你想成为 Nutz Committers 中的一员,请 [committer/be_committer.man 阅读这里]
--------------------------------------------------------------------------------------------------------
我使用的时候如果出现问题怎么办?

# 上 [http://www.nutz.cn/ Nutz社区论坛],有问必答,秒回复
# 上 [https://www.nutz.cn/ Nutz社区论坛],有问必答,秒回复
# 到 [https://github.com/nutzam/nutz/issues github] 上报告 issue
# 或者加入 QQ 群
* [http://qun.qq.com/#jointhegroup/gid/68428921 Nutz社区群(68428921)超级群] -- 感谢 {*c.A} 的支持
Expand Down
32 changes: 27 additions & 5 deletions doc/manual/nutz_release_notes.man
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@

青豆,即青豌豆,我(wendal)最近的最爱,因为腰果吃完了.

本版本的预想发布时间是2016年年底,不负众望,跳票了. 原因, 天气冷.

这个版本,新功能不多,bugfix也少,最大的亮点是官网更新了(胖五做的),然后开始备案了,所以403了...
这个版本,新功能不多,bugfix也少,最大的亮点是官网更新了(胖五做的),另外官网正在备案,请使用https协议访问.

文档大幅更新,添加了十几个小节,调整了顺序,其动力来源,就是NutCN社区的3000+帖子.
每隔一段时间,我就会翻一遍,思考一下为什么会有这些问题?而不是单纯解答一下问题.
Expand All @@ -18,13 +16,37 @@
---------------------------------------------------------------------------------------------------------
主要变化:

* @One/@Many可以自定义推导field属性了
* fix: Json.toJson处理map循环引用时会导致内存溢出
* fix: EL表达式遇到多余右括号时会死循环
* add: @One/@Many默认关联关系
* add: @Inject支持优先按类型注入
* add: Json.toJson支持null值当空字符串写入
* add: JsonFormat的DateFormat支持非JDK实现
* add: websocket和WhaleFilter的文档
* add: 集成jedis和activiti的文档
* add: ioc js与java代码互转的文档


--------------------------------------------------------------------------------------------------------
部分新功能介绍

* TODO
@One/@Many现在更简洁了, target和field均可自动推导,当然,自定义依然可用.
{{{
// 以前
@One(target=Master.class, field="masteId")
private Master master;

// 现在
@One
private Master master;
}}}

--------------------------------------------------------------------------------------------------------
关联项目更新

* nutzmore, 新增jedis/activiti/spring boot/slog等等插件和扩展
* nutz-web, 新增runnable war生成器和启动器
* nutzmongo, 适配mongodb 3.x驱动

--------------------------------------------------------------------------------------------------------
详细列表:
Expand Down

0 comments on commit 3264211

Please sign in to comment.