12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- server:
- port: 22222
- Spring:
- profiles:
- active: pro
- jpa:
- hibernate:
- ddl-auto: update
- datasource:
- driver-class-name: org.postgresql.Driver
- url: jdbc:postgresql://192.168.10.9:5432/sqmmt
- username: postgres
- password: Richr00t#
- mybatis:
- mapper-locations: classpath:mapper/**.xml
- logging:
- level:
- org:
- hibernate:
- SQL: DEBUG # 开启SQL的log 这里需要设置为DEBUG
- type:
- descriptor:
- sql:
- BasicBinder: TRACE # 开启SQL的参数记录 这里需要设置为TRACE
- com:
- nokia: DEBUG
- ---
- spring:
- profiles: pro
- ---
- spring:
- profiles: dev
- tsl:
- source:
- dirOfHighQualityListDay: D:/src/20231028
- dirOfHighQualityCountDay: D:/src/20231028
- dirOfMobileComplaint: D:/src/20231028
|