SpringCloud 学习总结(思维导图),java入门pdf

相关配置信息


工程目录:

在这里插入图片描述

关于application.yml中的配置:

服务提供者:provider

server:

port: 8081

#数据库连接信息

spring:

datasource:

driver-class-name: com.mysql.cj.jdbc.Driver

url: jdbc:mysql://localhost:3306/boot?useSSL=false&serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8

username: root

password: 123456

application:

name: service-provider #将来会作为微服务的名称

#配置mybatis信息,pojo别名扫描包

mybatis:

type-aliases-package: com.ly.domain

eureka:

client:

service-url:

defaultZone: http://localhost:10086/eureka

register-with-eureka: true #默认值为true,服务提供方启动时,会检测该参数是否为true,true-注册给eureka

instance:

lease-renewal-interval-in-seconds: 5 #心跳时间

lease-expiration-duration-in-seconds: 15 #过期时间

服务调用者:consumer

server:

port: 8088

spring:

application:

name: service-consumer #将来会作为微服务的名称

eureka:

client:

service-url:

defaultZone: http://localhost:10086/eureka

fetch-registry: true #是否拉取服务,默认为true

registry-fetch-interval-seconds: 5 #拉取服务的间隔时间

service-provider:

ribbon:

NFLoadBalancerRuleClassName: com.netflix.loadbalancer.RandomRule

hystrix:

command:

default:

【一线大厂Java面试题解析+后端开发学习笔记+最新架构讲解视频+实战项目源码讲义】

浏览器打开:qq.cn.hn/FTf 开源分享

execution:

isolation:

thread:

timeoutInMilliseconds: 6000 #设置hystrix的超时时间为6000ms

feign:

hystrix:

enabled: true #开启Feign的熔断功能

Eureka服务注册中心:

server:

port: 10086

spring:

application:

name: ly-eureka #将来会作为微服务名称注入到eureka容器

eureka:

client:

service-url:

defaultZone: http://localhost:${server.port}/eureka

#server:

#eviction-interval-timer-in-ms: 5000 #失效剔除时间,单位毫秒

#enable-self-preservation: false #关闭自我保护状态

Zuul网关:

server:

port: 10010

spring:

application:

name: ly-zuul

#zuul: #路由配置方式1

#routes:

#service-provider:

#path: /service-provider/**

#url: http://localhost:8081

#zuul: #路由配置方式2

#routes:

#service-provider:

#path: /service-provider/**

#serviceId: service-provider

zuul: #路由配置方式3,推荐

routes:

service-provider: /provider/**

service-consumer: /consumer/**

prefix: /api

eureka:

client:

service-url:

defaultZone: http://localhost:10086/eureka

启动器相关:

org.springframework.boot

spring-boot-starter-web

org.mybatis.spring.boot

mybatis-spring-boot-starter

2.1.4

tk.mybatis

mapper-spring-boot-starter

2.0.4

mysql

mysql-connector-java

8.0.11

runtime

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值