Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
venwyhk committed Oct 25, 2016
1 parent 56f2c0c commit f0d6488
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@

## 目录说明 ##

- ikasoa-admin:*服务管理相关代码(利用Zookeeper注册和管理服务)*
- `ikasoa-admin` : *服务管理相关代码(利用Zookeeper注册和管理服务)*

- ikasoa-core:*基础核心包*
- `ikasoa-core` : *基础核心包*

- ikasoa-rpc:*实现RPC功能的代码*
- `ikasoa-rpc` : *实现RPC功能的代码*

- ikasoa-example:*示例代码*
- `ikasoa-example` : *示例代码*

## 环境搭建 ##

Expand Down Expand Up @@ -51,7 +51,7 @@ pom.xml
<dependency>
<groupId>com.ikasoa</groupId>
<artifactId>ikasoa-core</artifactId>
<version>0.4.5</version>
<version>0.4.6</version>
</dependency>
......
```
Expand Down Expand Up @@ -381,7 +381,7 @@ ThriftClientDemo.java

## 服务实现类型 ##

*Ikasoa默认使用Thrift作为服务类型的实现,但也提供了Netty以供选择.*
*ikasoa默认使用Thrift作为服务类型的实现,但也提供了Netty以供选择.*

##### 使用Thrift服务 #####

Expand All @@ -401,7 +401,7 @@ ThriftClientDemo.java

## 负载均衡 ##

*Ikasoa提供了2种负载均衡,分别为轮循(含权重)和随机,默认使用轮循.*
*ikasoa提供了2种负载均衡,分别为轮循(含权重)和随机,默认使用轮循.*

##### 使用轮循负载均衡(默认) #####

Expand Down Expand Up @@ -429,7 +429,7 @@ ThriftClientDemo.java

创建自定义序列化类(例如com.xxx.XLoadBalanceImpl).

自定义序列化类(com.xxx.XLoadBalanceImpl)需实现接口 com.ikamobile.ikasoa.core.loadbalance.LoadBalance.
自定义序列化类(com.xxx.XLoadBalanceImpl)需实现接口com.ikamobile.ikasoa.core.loadbalance.LoadBalance.

通过如下方式获取服务:

Expand All @@ -442,7 +442,7 @@ ThriftClientDemo.java

## 序列化 ##

*Ikasoa提供了3种序列化方式,分别为fastjson,xml,kryo,默认使用fastjson.*
*ikasoa提供了3种序列化方式,分别为fastjson,xml,kryo,默认使用fastjson.*

##### 使用fastjson作为序列化方式(默认) #####

Expand Down
2 changes: 1 addition & 1 deletion ikasoa-admin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
<dependency>
<groupId>com.ikasoa</groupId>
<artifactId>ikasoa-core</artifactId>
<version>0.4.5</version>
<version>0.4.6</version>
</dependency>
<dependency>
<groupId>com.github.sgroschupf</groupId>
Expand Down
4 changes: 2 additions & 2 deletions ikasoa-rpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.ikasoa</groupId>
<artifactId>ikasoa-rpc</artifactId>
<version>0.3-BETA</version>
<version>0.4-SNAPSHOTS</version>
<packaging>jar</packaging>
<name>Ikasoa RPC</name>
<description>ikasoa is a java distributed service framework.</description>
Expand Down Expand Up @@ -116,7 +116,7 @@
<dependency>
<groupId>com.ikasoa</groupId>
<artifactId>ikasoa-core</artifactId>
<version>0.4.5</version>
<version>0.4.6</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
Expand Down

0 comments on commit f0d6488

Please sign in to comment.