mirror of
https://gitee.com/youlaitech/youlai-mall.git
synced 2024-12-23 13:03:43 +08:00
doc:更新相关文档
This commit is contained in:
parent
0e2672c122
commit
9ec8521a5d
@ -177,6 +177,8 @@ youlai-mall
|
|||||||
8. [Spring Cloud实战 | 最八篇:Spring Cloud +Spring Security OAuth2+ Vue前后端分离模式下无感知刷新实现JWT续期](https://www.cnblogs.com/haoxianrui/p/14022632.html)
|
8. [Spring Cloud实战 | 最八篇:Spring Cloud +Spring Security OAuth2+ Vue前后端分离模式下无感知刷新实现JWT续期](https://www.cnblogs.com/haoxianrui/p/14022632.html)
|
||||||
9. [Spring Cloud实战 | 最九篇:Spring Security OAuth2认证服务器统一认证自定义异常处理](https://www.cnblogs.com/haoxianrui/p/14028366.html)
|
9. [Spring Cloud实战 | 最九篇:Spring Security OAuth2认证服务器统一认证自定义异常处理](https://www.cnblogs.com/haoxianrui/p/14028366.html)
|
||||||
10. [Spring Cloud实战 | 第十篇 :Spring Cloud + Nacos整合Seata 1.4.1最新版本实现微服务架构中的分布式事务,进阶之路必须要迈过的槛](https://www.cnblogs.com/haoxianrui/p/14280184.html)
|
10. [Spring Cloud实战 | 第十篇 :Spring Cloud + Nacos整合Seata 1.4.1最新版本实现微服务架构中的分布式事务,进阶之路必须要迈过的槛](https://www.cnblogs.com/haoxianrui/p/14280184.html)
|
||||||
|
11. [Spring Cloud实战 | 第十一篇 :Spring Cloud Gateway网关实现对RESTful接口权限和按钮权限细粒度控制
|
||||||
|
](https://www.cnblogs.com/haoxianrui/p/14396990.html)
|
||||||
|
|
||||||
> 后台管理前端
|
> 后台管理前端
|
||||||
|
|
||||||
|
@ -179,7 +179,7 @@
|
|||||||
<!-- 指定远程 Docker API地址 -->
|
<!-- 指定远程 Docker API地址 -->
|
||||||
<dockerHost>https://b.youlai.store:2376</dockerHost>
|
<dockerHost>https://b.youlai.store:2376</dockerHost>
|
||||||
<!-- 指定tls证书的目录 -->
|
<!-- 指定tls证书的目录 -->
|
||||||
<dockerCertPath>C:\certs\docker\b.youlai.store</dockerCertPath>
|
<dockerCertPath>C:\cert\docker\b.youlai.store</dockerCertPath>
|
||||||
|
|
||||||
<!-- 复制 jar包到docker容器指定目录-->
|
<!-- 复制 jar包到docker容器指定目录-->
|
||||||
<resources>
|
<resources>
|
||||||
|
@ -15,16 +15,3 @@ spring:
|
|||||||
group: DEFAULT_GROUP
|
group: DEFAULT_GROUP
|
||||||
prefix: ${spring.application.name}
|
prefix: ${spring.application.name}
|
||||||
|
|
||||||
# 微信小程序
|
|
||||||
weapp:
|
|
||||||
appid: wx99a151dc43d2637b
|
|
||||||
secret: a09605af8ad29ca5d18ff31c19828f37
|
|
||||||
|
|
||||||
# 全局参数设置
|
|
||||||
ribbon:
|
|
||||||
ReadTimeout: 120000
|
|
||||||
ConnectTimeout: 10000
|
|
||||||
SocketTimeout: 10000
|
|
||||||
MaxAutoRetries: 0
|
|
||||||
MaxAutoRetriesNextServer: 1
|
|
||||||
|
|
||||||
|
@ -14,14 +14,3 @@ spring:
|
|||||||
file-extension: yaml
|
file-extension: yaml
|
||||||
group: DEFAULT_GROUP
|
group: DEFAULT_GROUP
|
||||||
prefix: ${spring.application.name}
|
prefix: ${spring.application.name}
|
||||||
weapp:
|
|
||||||
appid: wx99a151dc43d2637b
|
|
||||||
secret: a09605af8ad29ca5d18ff31c19828f37
|
|
||||||
|
|
||||||
# 全局参数设置
|
|
||||||
ribbon:
|
|
||||||
ReadTimeout: 120000
|
|
||||||
ConnectTimeout: 10000
|
|
||||||
SocketTimeout: 10000
|
|
||||||
MaxAutoRetries: 0
|
|
||||||
MaxAutoRetriesNextServer: 1
|
|
||||||
|
@ -120,7 +120,7 @@
|
|||||||
<!-- 指定远程 Docker API地址 -->
|
<!-- 指定远程 Docker API地址 -->
|
||||||
<dockerHost>https://a.youlai.store:2376</dockerHost>
|
<dockerHost>https://a.youlai.store:2376</dockerHost>
|
||||||
<!-- 指定tls证书的目录 -->
|
<!-- 指定tls证书的目录 -->
|
||||||
<dockerCertPath>C:\certs\docker\a.youlai.store</dockerCertPath>
|
<dockerCertPath>C:\cert\docker\a.youlai.store</dockerCertPath>
|
||||||
|
|
||||||
<!-- 复制 jar包到docker容器指定目录-->
|
<!-- 复制 jar包到docker容器指定目录-->
|
||||||
<resources>
|
<resources>
|
||||||
|
@ -12,19 +12,3 @@ spring:
|
|||||||
# docker启动nacos-server需要配置
|
# docker启动nacos-server需要配置
|
||||||
server-addr: ${spring.cloud.nacos.discovery.server-addr}
|
server-addr: ${spring.cloud.nacos.discovery.server-addr}
|
||||||
file-extension: yaml
|
file-extension: yaml
|
||||||
|
|
||||||
# 全局参数设置
|
|
||||||
ribbon:
|
|
||||||
ReadTimeout: 120000
|
|
||||||
ConnectTimeout: 10000
|
|
||||||
SocketTimeout: 10000
|
|
||||||
MaxAutoRetries: 0
|
|
||||||
MaxAutoRetriesNextServer: 1
|
|
||||||
|
|
||||||
hystrix:
|
|
||||||
command:
|
|
||||||
default:
|
|
||||||
execution:
|
|
||||||
isolation:
|
|
||||||
thread:
|
|
||||||
timeoutInMilliseconds: 40000
|
|
||||||
|
Loading…
Reference in New Issue
Block a user