Skip to content

Commit

Permalink
beta7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
yangfuhai committed Sep 11, 2017
1 parent 2416333 commit d335afe
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
13 changes: 13 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
jboot-1.0-beta7:
新增:多数据源情况下,是否添加表映射的配置支持。
新增:websocket的支持,更新依赖。
修复:启用分布式session的情况下,在同一个request里setSession又去getSession 得到空值的bug
修复:修改方法名 RedisManager.getReidis() 为 RedisManager.getRedis()
优化:appassembler-maven-plugin插件打包jar存放的目录由lib修改为libs
优化:删除 无用的 JbootSessionManager 类
更新:分布式session的相关文档。
更新:dubbo到最新版本2.5.4
更新:undertow到最新版本1.4.20.Final



jboot-1.0-beta6:
1、添加JbootServiceBase,方便在Jboot APP中对service的编写工作。
2、添加JbootServiceGenerator用于对Service层的代码生成。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ public class JbootHttpSessionWapper implements HttpSession {
private static final long SESSION_TIME = TimeUnit.DAYS.toSeconds(2);
private static final String SESSION_CACHE_NAME = "SESSION";

HttpSession baseSession;

@Override
public long getCreationTime() {
return 0;
Expand Down

0 comments on commit d335afe

Please sign in to comment.