2025-05-11 17:21:07 +08:00
|
|
|
|
spring.application.name=intelligent-application-orchestration-service
|
2025-05-13 10:47:23 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# 数据库配置
|
|
|
|
|
spring.datasource.url=jdbc:kingbase8://116.205.121.200:54321/Ipz
|
|
|
|
|
spring.datasource.username=system
|
|
|
|
|
spring.datasource.password=root
|
|
|
|
|
spring.datasource.driver-class-name=com.kingbase8.Driver
|
|
|
|
|
spring.datasource.hikari.maximum-pool-size=10
|
|
|
|
|
spring.datasource.hikari.minimum-idle=5
|
2025-05-14 21:16:03 +08:00
|
|
|
|
spring.datasource.hikari.connection-timeout=30000
|
|
|
|
|
|
|
|
|
|
# SQL映射文件路径配置
|
|
|
|
|
mybatis.mapper-locations=classpath:mapper/*.xml
|
|
|
|
|
# 配置实体类别名所在包
|
|
|
|
|
mybatis.type-aliases-package=com.bipt.intelligentapplicationorchestrationservice.pojo
|
|
|
|
|
# 开启驼峰命名转换
|
2025-05-20 16:33:07 +08:00
|
|
|
|
mybatis.configuration.map-underscore-to-camel-case=true
|
|
|
|
|
|
|
|
|
|
# Redis服务器地址
|
2025-05-21 15:56:02 +08:00
|
|
|
|
spring.data.redis.host=116.205.121.200
|
2025-05-20 16:33:07 +08:00
|
|
|
|
# Redis服务器端口
|
|
|
|
|
spring.data.redis.port=6379
|
|
|
|
|
# Redis密码(如果有)
|
2025-05-21 15:56:02 +08:00
|
|
|
|
spring.data.redis.password=Jbjhhzstsl97@
|
2025-05-20 16:33:07 +08:00
|
|
|
|
# Redis数据库索引(默认为0)
|
2025-05-21 22:18:31 +08:00
|
|
|
|
spring.data.redis.database = 0
|
2025-05-20 16:33:07 +08:00
|
|
|
|
# 连接超时时间(毫秒)
|
2025-05-21 22:18:31 +08:00
|
|
|
|
spring.data.redis.timeout = 3000
|