12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- spring:
- application:
- name: pay-server
- profiles:
- # 打包或运行时,换这里:sit测试,prod正式
- active: sit
- cloud:
- config:
- name: pay-server
- discovery:
- service-id: config-server
- # 是否获取配置中心配置
- enabled: true
- # 项目端口
- server:
- port: 49013
- management:
- endpoints:
- web:
- exposure:
- include: refresh
- mybatis-plus:
- mapper-locations: classpath:com/szwl/mapper/xml/*.xml
- logging:
- level:
- com.szwl: debug
- oauth:
- wx:
- # 测试帐号
- # appID: wx6959f112e9ffbfa3
- # appSecret: 32f6fdf12bc25361110e1786f386eaab
- # 正式账户
- appID: wxcd5b1b2636c9f611
- appSecret: e2854aa99f8279f33b4f065b2ffb75b1
- ##上面是基础配置,不用上配置中心那种
- ##下面是环境区分,主要不同环境不同文件获取
- ---
- #测试环境
- spring:
- profiles: sit
- #数据库配置
- datasource:
- url: jdbc:mysql://rm-wz995mu26a1479kz0so.mysql.rds.aliyuncs.com:3306/orderdb-test
- username: root
- password: sunzee@020
- driver-class-name: com.mysql.jdbc.Driver
- #注册中心
- eureka:
- client:
- serviceUrl:
- defaultZone: http://120.25.151.99:49001/eureka/
- register-with-eureka: true
- # register-with-eureka: false
- instance:
- prefer-ip-address: true
- ip-address: 120.25.151.99
- ---
- ##正式环境
- spring:
- profiles: prod
- #数据库配置
- datasource:
- url: jdbc:mysql://rm-wz995mu26a1479kz0.mysql.rds.aliyuncs.com:3306/orderdb
- username: root
- password: sunzee@020
- driver-class-name: com.mysql.jdbc.Driver
- #注册中心
- eureka:
- client:
- serviceUrl:
- defaultZone: http://10.0.0.153:49001/eureka/,http://10.0.0.152:49001/eureka/
- register-with-eureka: true
- instance:
- prefer-ip-address: true
|