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