配置文件优化

This commit is contained in:
tanghc
2019-07-18 15:28:48 +08:00
parent fce0b4d242
commit 167d0a77f7
18 changed files with 12 additions and 275 deletions

View File

@@ -103,14 +103,7 @@
<version>1.18.4</version> <version>1.18.4</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> </dependencies>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-commons</artifactId>
<version>2.1.0.RELEASE</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build> <build>
<plugins> <plugins>

View File

@@ -41,7 +41,7 @@ easyopen.ignore-validate=true
registry.eureka-server-addr=${eureka.url} registry.eureka-server-addr=${eureka.url}
registry.nacos-server-addr=${nacos.url} registry.nacos-server-addr=${nacos.url}
# 使用eurekaeureka使用nacos填nacos # 使用eurekaeureka使用nacos填nacos
registry.name=eureka registry.name=nacos
logging.level.com.gitee=debug logging.level.com.gitee=debug

View File

@@ -1,61 +0,0 @@
server:
port: 8082
# token过期时间分钟
admin:
access-token:
timeout-minutes: 30
sop:
# 签名方式rsa支付宝开放平台签名方式md5淘宝开放平台签名方式
sign-type: rsa
# 不用改
spring:
application:
name: sop-admin
cloud:
# zookeeper地址根据实际情况修改
zookeeper:
connect-string: localhost:2181
baseSleepTimeMs: 3000
maxRetries: 3
# 数据源
datasource:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/sop?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull
username: root
password: root
# 固定不用改
easyopen:
show-doc: true
ignore-validate: true
# 注册中心地址,根据实际情况改,这里只是参数,并不会去注册
registry:
eureka-server-addr: http://localhost:1111/eureka/
# nacos服务器地址
nacos-server-addr: 127.0.0.1:8848
# 使用eurekaeureka使用nacos填nacos
name: nacos
# 根据实际情况改
logging:
level:
com:
gitee: debug
# 不用改
mybatis:
fill: {com.gitee.fastmybatis.core.support.DateFillInsert: gmt_create,
com.gitee.fastmybatis.core.support.DateFillUpdate: gmt_modified}
# 不用改,如果要改,请全局替换修改
zuul:
secret: MZZOUSTua6LzApIWXCwEgbBmxSzpzC

View File

@@ -1,3 +0,0 @@
spring:
profiles:
active: dev

View File

@@ -2,10 +2,8 @@ server.port=3333
spring.application.name=book-service spring.application.name=book-service
spring.application.description=book服务 spring.application.description=book服务
# eureka注册中心如果使用nacos注册中心这里要注释掉
eureka.client.serviceUrl.defaultZone=http://localhost:1111/eureka/
# nacos注册中心 # nacos注册中心
# spring.nacos.discovery.server-addr=127.0.0.1:8848 spring.cloud.nacos.discovery.server-addr=127.0.0.1:8848
# zookeeper配置 # zookeeper配置
spring.cloud.zookeeper.connect-string=localhost:2181 spring.cloud.zookeeper.connect-string=localhost:2181

View File

@@ -1,37 +0,0 @@
server:
port: 3333
spring:
application:
name: book-service
cloud:
zookeeper:
# zookeeper配置
connect-string: localhost:2181
# nacos注册中心和eureka只能用一个
nacos:
discovery:
server-addr: 127.0.0.1:8848
# eureka注册中心如果使用nacos注册中心这里要注释掉
#eureka:
# client:
# serviceUrl:
# defaultZone: http://localhost:1111/eureka/
# dubbo consumer
demo:
service:
version: 1.0.0
dubbo:
application:
id: dubbo-consumer-demo
name: dubbo-consumer-demo
protocol:
id: dubbo
name: dubbo
port: 12345
management:
port: 8081

View File

@@ -1,3 +0,0 @@
spring:
profiles:
active: dev

View File

@@ -2,10 +2,8 @@ server.port=2222
spring.application.name=story-service spring.application.name=story-service
spring.application.description=story服务 spring.application.description=story服务
# eureka注册中心如果使用nacos注册中心这里要注释掉
eureka.client.serviceUrl.defaultZone=http://localhost:1111/eureka/
# nacos注册中心 # nacos注册中心
# spring.nacos.discovery.server-addr=127.0.0.1:8848 spring.cloud.nacos.discovery.server-addr=127.0.0.1:8848
# zookeeper配置 # zookeeper配置
spring.cloud.zookeeper.connect-string=localhost:2181 spring.cloud.zookeeper.connect-string=localhost:2181

View File

@@ -1,32 +0,0 @@
server:
port: 2222
spring:
application:
name: story-service
description: story服务
cloud:
zookeeper:
connect-string: localhost:2181
# nacos注册中心和eureka只能用一个
nacos:
discovery:
server-addr: 127.0.0.1:8848
# eureka注册中心如果使用nacos注册中心这里要注释掉
#eureka:
# client:
# serviceUrl:
# defaultZone: http://localhost:1111/eureka/
# dubbo provider
dubbo:
protocol:
name: dubbo
port: 12345
registry:
address: N/A
scan:
base-packages: com.gitee.sop.storyweb.service

View File

@@ -1,3 +0,0 @@
spring:
profiles:
active: dev

View File

@@ -9,6 +9,8 @@ mysql.password=root
eureka.url=http://localhost:1111/eureka/ eureka.url=http://localhost:1111/eureka/
# zookeeper地址 # zookeeper地址
zookeeper.url=localhost:2181 zookeeper.url=localhost:2181
# nacos地址
nacos.url=127.0.0.1:8848
# zipkin服务监控地址没有开启不用改 # zipkin服务监控地址没有开启不用改
zipkin.url=http://127.0.0.1:9411/ zipkin.url=http://127.0.0.1:9411/
# ------- 需要改的配置end ------- # ------- 需要改的配置end -------
@@ -32,10 +34,12 @@ ribbon.ReadTimeout=2000
# 请谨慎设置因为post请求大多都是写入请求如果要支持重试确保服务的幂等性 # 请谨慎设置因为post请求大多都是写入请求如果要支持重试确保服务的幂等性
ribbon.OkToRetryOnAllOperations=false ribbon.OkToRetryOnAllOperations=false
eureka.client.serviceUrl.defaultZone=${eureka.url} # nacos注册中心配置
spring.cloud.nacos.discovery.server-addr=${nacos.url}
# zookeeper配置
spring.cloud.zookeeper.connect-string=${zookeeper.url} spring.cloud.zookeeper.connect-string=${zookeeper.url}
#spring.cloud.gateway.discovery.locator.lower-case-service-id=true
#spring.cloud.gateway.discovery.locator.enabled=true
spring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/sop?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull spring.datasource.url=jdbc:mysql://localhost:3306/sop?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull
spring.datasource.username=${mysql.username} spring.datasource.username=${mysql.username}

View File

@@ -1,64 +0,0 @@
server:
port: 8081
zuul:
# 入口地址,不用改,默认是/zuul
servlet-path: /api
# 禁用默认的过滤器,不能删,不用改
FormBodyWrapperFilter:
pre:
disable: true
Servlet30WrapperFilter:
pre:
disable: true
# 不用改,如果要改,请全局替换修改
secret: MZZOUSTua6LzApIWXCwEgbBmxSzpzC
ribbon:
# https://blog.csdn.net/qq_36872046/article/details/81058045
# 路由转发超时时间毫秒默认值1000详见RibbonClientConfiguration.DEFAULT_READ_TIMEOUT。
# 如果微服务端 处理时间过长会导致ribbon read超时解决办法将这个值调大一点
ReadTimeout: 2000
# 设置为true默认false则所有请求都重试默认只支持get请求重试
# 请谨慎设置因为post请求大多都是写入请求如果要支持重试确保服务的幂等性
OkToRetryOnAllOperations: false
# eureka注册中心如果使用nacos注册中心这里要注释掉
#eureka:
# client:
# serviceUrl:
# defaultZone: http://localhost:1111/eureka/
spring:
application:
name: api-gateway
# zookeeper根据实际情况修改
cloud:
zookeeper:
connect-string: localhost:2181
# Spring Cloud Gateway配置如果用了zuul这段配置没有效果不用改
gateway:
discovery:
locator:
lower-case-service-id: true
enabled: true
# nacos注册中心和eureka只能用一个
nacos:
discovery:
server-addr: 127.0.0.1:8848
# 数据源,根据实际情况修改
datasource:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/sop?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull
username: root
password: root
# 上传文件配置,根据实际情况修改
servlet:
multipart:
enabled: true
max-file-size: 20MB # 上传文件最大20MB默认1MB
max-request-size: 20MB

View File

@@ -1,3 +0,0 @@
spring:
profiles:
active: dev

View File

@@ -1,17 +0,0 @@
eureka:
client:
fetch-registry: false
# 不注册自己
register-with-eureka: false
serviceUrl:
defaultZone: http://${eureka.host}:${eureka.port}/eureka/
# 注册中心地址
host: localhost
port: 1111
server:
port: 1111
spring:
application:
name: sop-registry

View File

@@ -1,3 +0,0 @@
spring:
profiles:
active: dev

View File

@@ -17,7 +17,7 @@ registry.eureka-server-addr=${eureka.url}
# nacos服务器地址 # nacos服务器地址
registry.nacos-server-addr=${nacos.url} registry.nacos-server-addr=${nacos.url}
# 使用eurekaeureka使用nacos填nacos # 使用eurekaeureka使用nacos填nacos
registry.name=eureka registry.name=nacos
spring.cloud.zookeeper.connect-string=${zookeeper.url} spring.cloud.zookeeper.connect-string=${zookeeper.url}

View File

@@ -1,27 +0,0 @@
server:
port: 8083
# 注册中心地址,根据实际情况改,这里只是参数,并不会去注册
registry:
eureka-server-addr: http://localhost:1111/eureka/
# nacos服务器地址
nacos-server-addr: 127.0.0.1:8848
# 使用eurekaeureka使用nacos填nacos
name: nacos
spring:
application:
name: website-server
cloud:
zookeeper:
connect-string: localhost:2181
api:
# 测试地址
url-test: http://api-test.yourdomain.com/api
# 沙箱环境
url-sandbox: http://localhost:8081/api
# 正式地址
url-prod: http://open.yourdomain.com/api
pwd: doc#123

View File

@@ -1,3 +0,0 @@
spring:
profiles:
active: dev