parent
194a39a042
commit
9adfe58b0d
@ -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 |
||||
# 使用eureka,填:eureka,使用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 |
@ -1,3 +0,0 @@ |
||||
spring: |
||||
profiles: |
||||
active: dev |
@ -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 |
@ -1,3 +0,0 @@ |
||||
spring: |
||||
profiles: |
||||
active: dev |
@ -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 |
@ -1,3 +0,0 @@ |
||||
spring: |
||||
profiles: |
||||
active: dev |
@ -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 |
@ -1,3 +0,0 @@ |
||||
spring: |
||||
profiles: |
||||
active: dev |
@ -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 |
@ -1,3 +0,0 @@ |
||||
spring: |
||||
profiles: |
||||
active: dev |
@ -1,27 +0,0 @@ |
||||
server: |
||||
port: 8083 |
||||
|
||||
# 注册中心地址,根据实际情况改,这里只是参数,并不会去注册 |
||||
registry: |
||||
eureka-server-addr: http://localhost:1111/eureka/ |
||||
# nacos服务器地址 |
||||
nacos-server-addr: 127.0.0.1:8848 |
||||
# 使用eureka,填:eureka,使用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 |
@ -1,3 +0,0 @@ |
||||
spring: |
||||
profiles: |
||||
active: dev |
Loading…
Reference in new issue