# zodiac **Repository Path**: ypconfig/zodiac ## Basic Information - **Project Name**: zodiac - **Description**: 自研 springcloud 微服务组件 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-09-02 - **Last Updated**: 2021-11-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # zodiac #### 介绍 # zodiac-server 分布式注册中心 默认集群启动 -- 启动参数 --port=8043 --serverAddress=127.0.0.1:8083 --initialServers=127.0.0.1:8081,127.0.0.1:8082,127.0.0.1:8083 --dataPath=E:\TEST\node3 --port=8042 --serverAddress=127.0.0.1:8082 --initialServers=127.0.0.1:8081,127.0.0.1:8082,127.0.0.1:8083 --dataPath=E:\TEST\node2 --port=8041 --serverAddress=127.0.0.1:8081 --initialServers=127.0.0.1:8081,127.0.0.1:8082,127.0.0.1:8083 --dataPath=E:\TEST\node1 单机启动参数 --m=standalone # zodiac-rpc rpc服务调用 依赖于springcloud 任意注册中心 服务调用 @RpcReference(serverUrl = "example2") UserService userService; 服务提供 @RpcService public class UserServiceImpl { }