Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Kwan的解忧杂货铺@新空间代码工作室
SpringCloud-study
提交
aab7aa7a
S
SpringCloud-study
项目概览
Kwan的解忧杂货铺@新空间代码工作室
/
SpringCloud-study
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
SpringCloud-study
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
aab7aa7a
编写于
1月 09, 2023
作者:
Q
qinyingjie
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix:eureka高可用
上级
8279e992
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
56 addition
and
2 deletion
+56
-2
springcloud-service-common/pom.xml
springcloud-service-common/pom.xml
+4
-0
springcloud-service-common/src/main/java/com/kwan/springcloud/config/RestConfig.java
...src/main/java/com/kwan/springcloud/config/RestConfig.java
+2
-0
springcloud-service-eureka/src/main/resources/application-eureka8767.yaml
...ice-eureka/src/main/resources/application-eureka8767.yaml
+16
-0
springcloud-service-eureka/src/main/resources/application-eureka8768.yaml
...ice-eureka/src/main/resources/application-eureka8768.yaml
+16
-0
springcloud-service-eureka/src/main/resources/application-eureka8769.yaml
...ice-eureka/src/main/resources/application-eureka8769.yaml
+16
-0
springcloud-service-goods/src/main/resources/application.yaml
...ngcloud-service-goods/src/main/resources/application.yaml
+1
-1
springcloud-service-portal/src/main/resources/application.yaml
...gcloud-service-portal/src/main/resources/application.yaml
+1
-1
未找到文件。
springcloud-service-common/pom.xml
浏览文件 @
aab7aa7a
...
@@ -41,6 +41,10 @@
...
@@ -41,6 +41,10 @@
<artifactId>
fastjson
</artifactId>
<artifactId>
fastjson
</artifactId>
<version>
1.2.83
</version>
<version>
1.2.83
</version>
</dependency>
</dependency>
<dependency>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-commons
</artifactId>
</dependency>
</dependencies>
</dependencies>
...
...
springcloud-service-common/src/main/java/com/kwan/springcloud/config/RestConfig.java
浏览文件 @
aab7aa7a
package
com.kwan.springcloud.config
;
package
com.kwan.springcloud.config
;
import
org.springframework.cloud.client.loadbalancer.LoadBalanced
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.web.client.RestTemplate
;
import
org.springframework.web.client.RestTemplate
;
...
@@ -7,6 +8,7 @@ import org.springframework.web.client.RestTemplate;
...
@@ -7,6 +8,7 @@ import org.springframework.web.client.RestTemplate;
@Configuration
@Configuration
public
class
RestConfig
{
public
class
RestConfig
{
@LoadBalanced
@Bean
@Bean
public
RestTemplate
restTemplate
()
{
public
RestTemplate
restTemplate
()
{
return
new
RestTemplate
();
return
new
RestTemplate
();
...
...
springcloud-service-eureka/src/main/resources/application-eureka8767.yaml
0 → 100644
浏览文件 @
aab7aa7a
#端口号
server
:
port
:
8767
spring
:
application
:
name
:
eurka-server
eureka
:
instance
:
hostname
:
localhost
client
:
register-with-eureka
:
false
#由于该应用为注册中心,所以设置 为 false, 代表不向注册中心注册自己。
fetch-registry
:
false
#由于注册中心的职责就是维护服务实例, 它并不需要去检索服务, 所以也设置为 false。
serviceUrl
:
defaultZone
:
http://eureka8768:8768/eureka/,http://eureka8769:8769/eureka/
\ No newline at end of file
springcloud-service-eureka/src/main/resources/application-eureka8768.yaml
0 → 100644
浏览文件 @
aab7aa7a
#端口号
server
:
port
:
8768
spring
:
application
:
name
:
eurka-server
eureka
:
instance
:
hostname
:
localhost
client
:
register-with-eureka
:
false
#由于该应用为注册中心,所以设置 为 false, 代表不向注册中心注册自己。
fetch-registry
:
false
#由于注册中心的职责就是维护服务实例, 它并不需要去检索服务, 所以也设置为 false。
serviceUrl
:
defaultZone
:
http://eureka8767:8767/eureka/,http://eureka8769:8769/eureka/
\ No newline at end of file
springcloud-service-eureka/src/main/resources/application-eureka8769.yaml
0 → 100644
浏览文件 @
aab7aa7a
#端口号
server
:
port
:
8769
spring
:
application
:
name
:
eurka-server
eureka
:
instance
:
hostname
:
localhost
client
:
register-with-eureka
:
false
#由于该应用为注册中心,所以设置 为 false, 代表不向注册中心注册自己。
fetch-registry
:
false
#由于注册中心的职责就是维护服务实例, 它并不需要去检索服务, 所以也设置为 false。
serviceUrl
:
defaultZone
:
http://eureka8767:8767/eureka/,http://eureka8768:8768/eureka/
\ No newline at end of file
springcloud-service-goods/src/main/resources/application.yaml
浏览文件 @
aab7aa7a
...
@@ -17,7 +17,7 @@ spring:
...
@@ -17,7 +17,7 @@ spring:
eureka
:
eureka
:
client
:
client
:
service-url
:
service-url
:
defaultZone
:
http://
localhost:8766/eureka
defaultZone
:
http://
eureka8767:8767/eureka/,http://eureka8768:8768/eureka/,http://eureka8769:8769/eureka/
management
:
management
:
endpoints
:
endpoints
:
...
...
springcloud-service-portal/src/main/resources/application.yaml
浏览文件 @
aab7aa7a
...
@@ -10,4 +10,4 @@ spring:
...
@@ -10,4 +10,4 @@ spring:
eureka
:
eureka
:
client
:
client
:
service-url
:
service-url
:
defaultZone
:
http://localhost:8766/eureka
defaultZone
:
http://eureka8767:8767/eureka/,http://eureka8768:8768/eureka/,http://eureka8769:8769/eureka/
\ No newline at end of file
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录