tj
2025-06-05 2d549a04870d1315868a7cf19952b64e8071e711
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# 测试环境环境配置
 
server:
  # 服务端口
  port: 5000
 
logging:
  level:
    # SQL日志记录
    com.cloudroam.mapper: debug
 
spring:
  # 数据源配置,请修改为你项目的实际配置
  datasource:
    username: "root"
    password: "CloudRoam"
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://192.168.1.235:3306/pms_test?useSSL=false&serverTimezone=UTC&characterEncoding=UTF8&serverTimezone=GMT%2B8
 
    hikari:
      connection-test-query: SELECT 1
      connection-timeout: 60000
      idle-timeout: 300000
      max-lifetime: 60000
      minimum-idle: 10
      maximum-pool-size: 50
 
  jackson:
    time-zone: GMT+8