67 lines
2.3 KiB
YAML
67 lines
2.3 KiB
YAML
# 微信小程序服务配置
|
||
server:
|
||
port: 8892
|
||
|
||
|
||
# postgresql数据源配置
|
||
spring:
|
||
# profiles:
|
||
# active: pre
|
||
|
||
# datasource:
|
||
# driver-class-name: org.postgresql.Driver
|
||
# url: jdbc:postgresql://localhost:5432/rtos_wx_applet?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf-8
|
||
# username: postgres
|
||
# password: wsnet_906 #Fineidc@2023 #wsnet_906
|
||
|
||
# # 丰网服务器环境:IP:61.184.202.72; port:5432; db:rtos_applet_v2; user: postgres password: Fineidc@2023
|
||
# datasource:
|
||
# driver-class-name: org.postgresql.Driver
|
||
# url: jdbc:postgresql://61.184.202.72:5432/rtos_applet_v2?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf-8
|
||
# username: postgres
|
||
# password: Fineidc@2023 #Fineidc@2023 #wsnet_906
|
||
|
||
# 海通测试环境:IP:192.168.61.114; port:5432; db:rtos_wh; user: rtops_wh password: wh#2023
|
||
datasource:
|
||
driver-class-name: org.postgresql.Driver
|
||
url: jdbc:postgresql://192.168.61.114:5432/rtos_wh?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf-8
|
||
username: rtops_wh
|
||
password: wh#2023
|
||
|
||
|
||
# 开发库本地(公司):IP:192.168.0.16; port:5432; db:rtops_wh; user: rtos_wh password: wh#2023
|
||
# datasource:
|
||
# driver-class-name: org.postgresql.Driver
|
||
# url: jdbc:postgresql://192.168.0.16:5432/rtos_wh?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf-8
|
||
# username: rtops_wh
|
||
# password: wh#2023
|
||
|
||
# # 开发库本地:IP:localhost; port:5432; db:rtos_wh; user: postgres password: wsnet906
|
||
# datasource:
|
||
# driver-class-name: org.postgresql.Driver
|
||
# url: jdbc:postgresql://localhost:5432/rtos_wh?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf-8
|
||
# username: postgres
|
||
# password: wsnet906
|
||
|
||
# 华为云测试环境:IP:116.205.142.169; port:5432; db:rtos_wh; user: rtops_wh password: wh#2023
|
||
# datasource:
|
||
# driver-class-name: org.postgresql.Driver
|
||
# url: jdbc:postgresql://116.205.142.169:5432/rtos_wh?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf-8
|
||
# username: rtops_wh
|
||
# password: wh#2023
|
||
|
||
# mybatis配置
|
||
mybatis:
|
||
mapper-locations: classpath:mappers/*/*.xml
|
||
|
||
# pagehelper 分页插件
|
||
pagehelper:
|
||
helperDialect: postgresql
|
||
reasonable: true
|
||
supportMethodsArguments: true
|
||
rowBoundsWithCount: true
|
||
|
||
|
||
#params: count=countSql
|
||
|