配置文件优化

This commit is contained in:
tanghc
2019-07-18 15:46:37 +08:00
parent 194a39a042
commit 9adfe58b0d
15 changed files with 0 additions and 262 deletions

View File

@@ -16,8 +16,6 @@ zookeeper.url=localhost:2181
zipkin.url=http://127.0.0.1:9411/ zipkin.url=http://127.0.0.1:9411/
# ------- 需要改的配置end ------- # ------- 需要改的配置end -------
######### 下面的配置基本不用改 #########
# token过期时间分钟 # token过期时间分钟
admin.access-token.timeout-minutes=30 admin.access-token.timeout-minutes=30
# 签名方式rsa支付宝开放平台签名方式md5淘宝开放平台签名方式 # 签名方式rsa支付宝开放平台签名方式md5淘宝开放平台签名方式

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: eureka
# 根据实际情况改
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

@@ -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

@@ -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

@@ -13,8 +13,6 @@ zookeeper.url=localhost:2181
zipkin.url=http://127.0.0.1:9411/ zipkin.url=http://127.0.0.1:9411/
# ------- 需要改的配置end ------- # ------- 需要改的配置end -------
######### 下面的配置基本不用改 #########
spring.application.name=api-gateway spring.application.name=api-gateway
# 入口地址,不用改,默认是/zuul # 入口地址,不用改,默认是/zuul
zuul.servlet-path=/api zuul.servlet-path=/api

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

@@ -7,8 +7,6 @@ spring.application.name=sop-registry
eureka.url=http://localhost:1111/eureka/ eureka.url=http://localhost:1111/eureka/
# ------- 需要改的配置end ------- # ------- 需要改的配置end -------
######### 下面的配置基本不用改 #########
eureka.client.fetch-registry=false eureka.client.fetch-registry=false
eureka.client.register-with-eureka=false eureka.client.register-with-eureka=false
eureka.client.serviceUrl.defaultZone=${eureka.url} eureka.client.serviceUrl.defaultZone=${eureka.url}

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

@@ -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: eureka
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