Skip to content

Commit

Permalink
perf($POM): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnymillergh committed Jul 31, 2021
1 parent 27c61c4 commit 5ab6190
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Here is the highlights of **Muscle and Fitness Server**:

5. MySQL cluster support. Multi data source. Dynamic SQL read-write isolation. MyBatis-Plus is the integrated ORM library.

6. Redis 6.x support.
6. Redis 6.x support. Master-slave replication. Redis cluster

7. Docker, Rancher Kubernetes support. Google JIB for building Docker container images.

Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- POM Reference https://maven.apache.org/pom.html -->
Expand Down Expand Up @@ -44,16 +44,16 @@
<druid-spring-boot-starter.version>1.2.6</druid-spring-boot-starter.version>
<mybatis-plus-boot-starter.version>3.4.3.1</mybatis-plus-boot-starter.version>
<dynamic-datasource-spring-boot-starter.version>3.4.0</dynamic-datasource-spring-boot-starter.version>
<hutool-all.version>5.7.3</hutool-all.version>
<guava.version>30.0-jre</guava.version>
<knife4j.version>2.0.8</knife4j.version>
<hutool-all.version>5.7.5</hutool-all.version>
<guava.version>30.1.1-jre</guava.version>
<knife4j.version>2.0.9</knife4j.version>
<jjwt.version>0.11.2</jjwt.version>
<java-faker.version>1.0.2</java-faker.version>
<easyexcel.version>2.2.6</easyexcel.version>
<poi.version>5.0.0</poi.version>
<logstash-logback-encoder.version>6.6</logstash-logback-encoder.version>
<minio.version>8.2.2</minio.version>
<apache-tika.version>1.26</apache-tika.version>
<apache-tika.version>2.0.0</apache-tika.version>
</properties>

<!-- The modules (sometimes called subprojects) to build as a part of this project. -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ public LettuceConnectionFactory redisConnectionFactory() {
val lettuceClientConfiguration = LettuceClientConfiguration.builder()
.readFrom(ReadFrom.REPLICA_PREFERRED)
.build();
log.warn("Initial bean: '{}'", LettuceConnectionFactory.class.getSimpleName());
log.warn("Initial bean: '{}' for Redis Master/Replica configuration",
LettuceConnectionFactory.class.getSimpleName());
return new LettuceConnectionFactory(redisStaticMasterReplicaConfiguration, lettuceClientConfiguration);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ public LettuceConnectionFactory redisConnectionFactory() {
val lettuceClientConfiguration = LettuceClientConfiguration.builder()
.readFrom(ReadFrom.REPLICA_PREFERRED)
.build();
log.warn("Initial bean: '{}'", LettuceConnectionFactory.class.getSimpleName());
log.warn("Initial bean: '{}' for Redis Master/Replica configuration",
LettuceConnectionFactory.class.getSimpleName());
return new LettuceConnectionFactory(redisStaticMasterReplicaConfiguration, lettuceClientConfiguration);
}

Expand Down

0 comments on commit 5ab6190

Please sign in to comment.