-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from MartinDai/feature/springboot-3.x
Upgrade to SpringBoot 3.x and Java 17
- Loading branch information
Showing
70 changed files
with
346 additions
and
339 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
version: '3.7' | ||
services: | ||
consul: | ||
image: consul:1.12.2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
version: '3.7' | ||
services: | ||
namesrv: | ||
image: martindai/rocketmq:5.1.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
services: | ||
zoo1: | ||
image: zookeeper:3.6 | ||
container_name: zoo1 | ||
environment: | ||
ZOO_MY_ID: 1 | ||
volumes: | ||
- "./zk/zoo1/zoo.cfg:/conf/zoo.cfg" | ||
- "./zk/zoo1/data:/data" | ||
network_mode: "host" | ||
zoo2: | ||
image: zookeeper:3.6 | ||
container_name: zoo2 | ||
environment: | ||
ZOO_MY_ID: 2 | ||
volumes: | ||
- "./zk/zoo2/zoo.cfg:/conf/zoo.cfg" | ||
- "./zk/zoo2/data:/data" | ||
network_mode: "host" | ||
zoo3: | ||
image: zookeeper:3.6 | ||
container_name: zoo3 | ||
environment: | ||
ZOO_MY_ID: 3 | ||
volumes: | ||
- "./zk/zoo3/zoo.cfg:/conf/zoo.cfg" | ||
- "./zk/zoo3/data:/data" | ||
network_mode: "host" | ||
zoo-navigator: | ||
image: elkozmon/zoonavigator:1.1.3 | ||
container_name: zoo-navigator | ||
network_mode: "host" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
tickTime=2000 | ||
initLimit=10 | ||
syncLimit=5 | ||
dataDir=/data | ||
dataLogDir=/datalog | ||
admin.serverPort=8181 | ||
# 客户端连接的端口 | ||
clientPort=2181 | ||
# 集群中的服务器之间通信的端口(通常与leader选举有关) | ||
quorumPort=12888 | ||
# 集群中服务器选举leader的端口 | ||
electionPort=13888 | ||
server.1=127.0.0.1:12888:13888;2181 | ||
server.2=127.0.0.1:22888:23888;2182 | ||
server.3=127.0.0.1:32888:33888;2183 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
tickTime=2000 | ||
initLimit=10 | ||
syncLimit=5 | ||
dataDir=/data | ||
dataLogDir=/datalog | ||
admin.serverPort=8282 | ||
# 客户端连接的端口 | ||
clientPort=2182 | ||
# 集群中的服务器之间通信的端口(通常与leader选举有关) | ||
quorumPort=22888 | ||
# 集群中服务器选举leader的端口 | ||
electionPort=23888 | ||
server.1=127.0.0.1:12888:13888;2181 | ||
server.2=127.0.0.1:22888:23888;2182 | ||
server.3=127.0.0.1:32888:33888;2183 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
tickTime=2000 | ||
initLimit=10 | ||
syncLimit=5 | ||
dataDir=/data | ||
dataLogDir=/datalog | ||
admin.serverPort=8383 | ||
# 客户端连接的端口 | ||
clientPort=2183 | ||
# 集群中的服务器之间通信的端口(通常与leader选举有关) | ||
quorumPort=32888 | ||
# 集群中服务器选举leader的端口 | ||
electionPort=33888 | ||
server.1=127.0.0.1:12888:13888;2181 | ||
server.2=127.0.0.1:22888:23888;2182 | ||
server.3=127.0.0.1:32888:33888;2183 |
Oops, something went wrong.