Skip to content

Commit

Permalink
jboot v1.5.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
yangfuhai committed May 22, 2018
1 parent 796cb69 commit bfd2cbf
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 6 deletions.
2 changes: 1 addition & 1 deletion DOC.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
<dependency>
<groupId>io.jboot</groupId>
<artifactId>jboot</artifactId>
<version>1.5.3</version>
<version>1.5.4</version>
</dependency>
```
#### 编写helloworld
Expand Down
2 changes: 1 addition & 1 deletion README-ZH.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.5.3</version>
<version>1.5.4</version>
</dependency>

```
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ QQ-Group: 601440615
<dependency>
<groupId>io.jboot</groupId>
<artifactId>jboot</artifactId>
<version>1.5.3</version>
<version>1.5.4</version>
</dependency>

```
Expand Down
12 changes: 12 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
jboot-1.5.4:
优化:JbootConfigManager 高并发下可能造成的 Config 多个实例的问题
优化:ActionCache 代码逻辑优化,提高性能
优化:新增 JbootFilterHandler 用于过滤静态等数据,防止自动缓存的问题
优化:FixedInterceptors 高并发下可能造成的空指针异常的问题
优化:JbootShiroManager 在 shiro 功能关闭是还去初始化 shiro 路由的问题
优化:JbootLimitationManager 在多个限流策略的时候,只有第一个生效的问题
优化:JbootLimitationManager 代码逻辑,提高性能
优化:升级 motan 到最新版本 v1.1.1 ,并修改 JbootMotanProxyFactory 代码逻辑


jboot-1.5.3:
新增:给 @CacheEvict 新增 beforeInvocation 配置
新增:支持 Dubbo 的整体配置
修复:不支持 JFinal 全局 AOP 配置的问题
修复:MetricInterceptors 可能会出现空指针异常的问题


jboot-1.5.2:
新增:@CachesEvict 注解,用于删除多个缓存
优化:缓存逻辑和代码
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.5.3</version>
<version>1.5.4</version>
</dependency>

```
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.jboot</groupId>
<artifactId>jboot</artifactId>
<version>1.5.3</version>
<version>1.5.4</version>
<packaging>jar</packaging>

<name>jboot</name>
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.5.3";
private String version = "1.5.4";
private String mode = Jboot.MODE.DEV.getValue();
private boolean bannerEnable = true;
private String bannerFile = "banner.txt";
Expand Down

0 comments on commit bfd2cbf

Please sign in to comment.