change: NbApp.setMainPackage应返回自身

This commit is contained in:
Wendal Chen 2018-07-25 11:16:08 +08:00
parent 1c90315e73
commit 1e0a556b32
2 changed files with 15 additions and 1 deletions

View File

@ -1,5 +1,18 @@
# NB进化史
# 2.2.3 ""
修复shiro session默认过期时间,增强@PropDoc的可配置性
* 时间: 2018-07-17
* 事件: "世界杯结束啦"
* 曲目: [If You](https://www.youtube.com/watch?v=vUIHVpikGpI)
* 兼容性: 兼容2.0.x/2.1.x/2.2.x
* 变更:
* add: 添加配置项nutz.propdoc.packages可自定义扫描@PropDoc的路径
* fix: shiro的默认session超时设置错误
* update: 更新tio版本号
# 2.2.2 "If You"
添加elasticsearch支持

View File

@ -509,7 +509,8 @@ public class NbApp extends Thread {
return started;
}
public void setMainPackage(String mainPackage) {
public NbApp setMainPackage(String mainPackage) {
getAppContext().setMainPackage(mainPackage);
return this;
}
}