| 12345678910111213141516171819202122232425 |
- spring:
- datasource:
- url: jdbc:mysql://localhost:3306/alarm?useUnicode=true&characterEncoding=utf8&serverTimezone=GMT%2B8
- username: root
- password: zy18794936163
- driver-class-name: com.mysql.cj.jdbc.Driver
- jpa:
- hibernate:
- ddl-auto: update
- show-sql: true
- properties:
- hibernate:
- dialect: org.hibernate.dialect.MySQL8Dialect
- format_sql: true
- elasticsearch:
- uris: http://localhost:9200
- username: elastic
- password: zy18794936163
- logging:
- level:
- com.seecoder.ai.alarm: DEBUG
- org.hibernate.SQL: DEBUG
- org.hibernate.type.descriptor.sql.BasicBinder: TRACE
|