Skip to content

Commit

Permalink
jboot v1.2.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
yangfuhai committed Jan 4, 2018
1 parent ba452e5 commit 8194e7e
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DOC.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
<dependency>
<groupId>io.jboot</groupId>
<artifactId>jboot</artifactId>
<version>1.2.2</version>
<version>1.2.3</version>
</dependency>
```
#### 编写helloworld
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ QQ交流群: 601440615
<dependency>
<groupId>io.jboot</groupId>
<artifactId>jboot</artifactId>
<version>1.2.2</version>
<version>1.2.3</version>
</dependency>

```
Expand Down
12 changes: 12 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
jboot-1.2.3:
新增:JbootCache 新增 J2Cache 的支持
新增:PropertyConfig 注解新增 file() 的支持,可读取任意 properties 文件
新增:Jboot 默认新增限流功能
新增:自定义 FixedInterceptor 功能,FixedInterceptor 在Jfinal体系里是一个不能被 @Clear 的拦截器
优化:重命名注解 PropertieConfig 为 PropertyConfig
优化:移除 ehredis 缓存的 mq 依赖,默认使用 redis 的发布订阅功能
优化:重命名 HandlerInterceptor 为 FixedInterceptor
优化:使用 Caffeine 全面替代 Guava Cache



jboot-1.2.2:
新增:ParamType类,方便swagger注解使用
新增:JbootCache 新增 getTtl() 和 setTtl() 方法,方便对缓存设置过期时间
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/about_jboot.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ QQ交流群: 601440615
<dependency>
<groupId>io.jboot</groupId>
<artifactId>jboot</artifactId>
<version>1.2.2</version>
<version>1.2.3</version>
</dependency>

```
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/jboot/JbootConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
public class JbootConfig {


private String version = "1.2.2";
private String version = "1.2.3";
private String mode = Jboot.MODE.DEV.getValue();
private boolean bannerEnable = true;
private String bannerFile = "banner.txt";
Expand Down

0 comments on commit 8194e7e

Please sign in to comment.