Skip to content

Commit

Permalink
升级版本到1.5.4.RELEASE
Browse files Browse the repository at this point in the history
  • Loading branch information
zhongxunking committed Jun 2, 2019
1 parent cc64fc4 commit 4f4cc76
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@

启动服务端命令模板:
```shell
nohup java -jar configcenter-1.5.3.RELEASE.jar --spring.profiles.active="online" --spring.datasource.url="数据库url" --spring.datasource.username="数据库用户名" --spring.datasource.password="数据库密码" --spring.redis.host="redis的地址" --spring.redis.port="redis的端口" &
nohup java -jar configcenter-1.5.4.RELEASE.jar --spring.profiles.active="online" --spring.datasource.url="数据库url" --spring.datasource.username="数据库用户名" --spring.datasource.password="数据库密码" --spring.redis.host="redis的地址" --spring.redis.port="redis的端口" &
```
比如我本地测试时启动命令:
```shell
nohup java -jar configcenter-1.5.3.RELEASE.jar --spring.profiles.active="online" --spring.datasource.url="jdbc:mysql://localhost:3306/configcenter-dev?useUnicode=true&characterEncoding=utf-8" --spring.datasource.username="root" --spring.datasource.password="root" --spring.redis.host="localhost" --spring.redis.port="6379" &
nohup java -jar configcenter-1.5.4.RELEASE.jar --spring.profiles.active="online" --spring.datasource.url="jdbc:mysql://localhost:3306/configcenter-dev?useUnicode=true&characterEncoding=utf-8" --spring.datasource.username="root" --spring.datasource.password="root" --spring.redis.host="localhost" --spring.redis.port="6379" &
```
> 以上是最简版的启动命令脚本,真正部署时可自行进行丰富,比如限制内存大小等等。
Expand All @@ -97,7 +97,7 @@ nohup java -jar configcenter-1.5.3.RELEASE.jar --spring.profiles.active="online"
<dependency>
<groupId>org.antframework.configcenter</groupId>
<artifactId>configcenter-client</artifactId>
<version>1.5.3.RELEASE</version>
<version>1.5.4.RELEASE</version>
</dependency>
```
#### 3.1.2 使用客户端
Expand Down Expand Up @@ -148,15 +148,15 @@ starter本质上还是依赖于上面介绍的客户端的能力,只不过根
<dependency>
<groupId>org.antframework.configcenter</groupId>
<artifactId>configcenter-spring-boot-starter</artifactId>
<version>1.5.3.RELEASE</version>
<version>1.5.4.RELEASE</version>
</dependency>
```
- SpringBoot1.x应用引入:
```xml
<dependency>
<groupId>org.antframework.configcenter</groupId>
<artifactId>configcenter-spring-boot-starter</artifactId>
<version>1.5.3.RELEASE</version>
<version>1.5.4.RELEASE</version>
<exclusions>
<exclusion>
<groupId>org.hibernate.validator</groupId>
Expand Down
2 changes: 1 addition & 1 deletion configcenter-assemble/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.antframework.configcenter</groupId>
<artifactId>configcenter</artifactId>
<version>1.5.3.RELEASE</version>
<version>1.5.4.RELEASE</version>
</parent>

<artifactId>configcenter-assemble</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion configcenter-biz/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.antframework.configcenter</groupId>
<artifactId>configcenter</artifactId>
<version>1.5.3.RELEASE</version>
<version>1.5.4.RELEASE</version>
</parent>

<artifactId>configcenter-biz</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion configcenter-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.antframework.configcenter</groupId>
<artifactId>configcenter</artifactId>
<version>1.5.3.RELEASE</version>
<version>1.5.4.RELEASE</version>
</parent>

<artifactId>configcenter-client</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion configcenter-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.antframework.configcenter</groupId>
<artifactId>configcenter</artifactId>
<version>1.5.3.RELEASE</version>
<version>1.5.4.RELEASE</version>
</parent>

<artifactId>configcenter-common</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion configcenter-dal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.antframework.configcenter</groupId>
<artifactId>configcenter</artifactId>
<version>1.5.3.RELEASE</version>
<version>1.5.4.RELEASE</version>
</parent>

<artifactId>configcenter-dal</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion configcenter-facade/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.antframework.configcenter</groupId>
<artifactId>configcenter</artifactId>
<version>1.5.3.RELEASE</version>
<version>1.5.4.RELEASE</version>
</parent>

<artifactId>configcenter-facade</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion configcenter-spring-boot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.antframework.configcenter</groupId>
<artifactId>configcenter</artifactId>
<version>1.5.3.RELEASE</version>
<version>1.5.4.RELEASE</version>
</parent>

<artifactId>configcenter-spring-boot-starter</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion configcenter-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.antframework.configcenter</groupId>
<artifactId>configcenter</artifactId>
<version>1.5.3.RELEASE</version>
<version>1.5.4.RELEASE</version>
</parent>

<artifactId>configcenter-test</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion configcenter-web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.antframework.configcenter</groupId>
<artifactId>configcenter</artifactId>
<version>1.5.3.RELEASE</version>
<version>1.5.4.RELEASE</version>
</parent>

<artifactId>configcenter-web</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>org.antframework.configcenter</groupId>
<artifactId>configcenter</artifactId>
<version>1.5.3.RELEASE</version>
<version>1.5.4.RELEASE</version>
<packaging>pom</packaging>

<name>configcenter</name>
Expand Down

0 comments on commit 4f4cc76

Please sign in to comment.