Skip to content

Commit

Permalink
jboot v1.6.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
yangfuhai committed Jul 19, 2018
1 parent fa39ae2 commit 69d5d4a
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README-ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Jboot Demos : https://gitee.com/fuhai/jboot/tree/master/src/test/java
<dependency>
<groupId>io.jboot</groupId>
<artifactId>jboot</artifactId>
<version>1.6.1</version>
<version>1.6.2</version>
</dependency>

```
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Jboot Demos : https://gitee.com/fuhai/jboot/tree/master/src/test/java
<dependency>
<groupId>io.jboot</groupId>
<artifactId>jboot</artifactId>
<version>1.6.1</version>
<version>1.6.2</version>
</dependency>

```
Expand Down
4 changes: 4 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
jboot-1.6.2:
修复:分布式session在使用redis缓存的时候会创建多个redis客户端的bug
优化:升级 undertow 和 jfinal-wexin 等依赖

jboot-1.6.1:
优化:FST序列化在Model发送变化的时候回出现序列化异常的问题
优化:Hystrix onFallback 默认情况下,在 RPC 异常的时候不对外抛出的问题
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.6.1</version>
<version>1.6.2</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.6.2-SNAPSHOT</version>
<version>1.6.2</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.6.1";
private String version = "1.6.2";
private String mode = Jboot.MODE.DEV.getValue();
private boolean bannerEnable = true;
private String bannerFile = "banner.txt";
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/opentracing/ClientDemo.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public static void main(String[] args) {

Jboot.setBootArg("jboot.rpc.type", "motan");
Jboot.setBootArg("jboot.rpc.callMode", "redirect");//直连模式,默认为注册中心
Jboot.setBootArg("jboot.rpc.directUrl", "localhost:8002");//直连模式的url地址
Jboot.setBootArg("jboot.rpc.directUrl", "localhost:8000");//直连模式的url地址


Jboot.setBootArg("jboot.tracing.type", "zipkin");//opentracing的类型
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/opentracing/ServerDemo.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class ServerDemo {
* 在启用之前,请先提起启动zipkin
* 启动zipkin的步骤:
* 1、下载 zipkin 的jar包:https://search.maven.org/remote_content?g=io.zipkin.java&a=zipkin-server&v=LATEST&c=exec
* 2、执行 java -jar 下载的jar包路径
* 2、执行 java -jar 下载的jar包路径 例如:java -jar /Users/michael/Downloads/zipkin-server-2.4.0-exec.jar
* 3、执行后,浏览器可以访问 http://127.0.0.1:9411 来查看zipkin收集的数据
*
* @param args
Expand All @@ -43,7 +43,7 @@ public static void main(String[] args) {

Jboot.setBootArg("jboot.rpc.type", "motan");
Jboot.setBootArg("jboot.rpc.callMode", "redirect");//直连模式,默认为注册中心
Jboot.setBootArg("jboot.rpc.directUrl", "localhost:8002");//直连模式的url地址
Jboot.setBootArg("jboot.rpc.directUrl", "localhost:8000");//直连模式的url地址


Jboot.setBootArg("jboot.tracing.type", "zipkin");
Expand Down

0 comments on commit 69d5d4a

Please sign in to comment.