| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- server:
- port: 1157
- spring:
- application:
- name: ${HOSTNAME:@hertzbeat@}${PID}
- profiles:
- active: prod
- mvc:
- static-path-pattern: /console/**
- resources:
- static-locations:
- - classpath:/dist/
- - classpath:../dist/
- jackson:
- default-property-inclusion: NON_EMPTY
- sureness:
- auths:
- - digest
- - basic
- - jwt
- ---
- spring:
- config:
- activate:
- on-profile: prod
- datasource:
- driver-class-name: com.mysql.cj.jdbc.Driver
- username: admin
- password: admin
- url: jdbc:mysql://localhost:3306/hertzbeat?useUnicode=true&characterEncoding=utf-8&useSSL=false
- platform: mysql
- hikari:
- max-lifetime: 120000
- jpa:
- database: mysql
- mail:
- host: smtp.exmail.qq.com
- username: example@tancloud.cn
- password: example
- port: 465
- default-encoding: UTF-8
- properties:
- mail:
- smtp:
- socketFactoryClass: javax.net.ssl.SSLSocketFactory
- ssl:
- enable: true
- debug: false
- thymeleaf:
- prefix: classpath:/templates/ #prefix:指定模板所在的目录
- check-template-location: true #check-tempate-location: 检查模板路径是否存在
- cache: false #cache: 是否缓存,开发模式下设置为false,避免改了模板还要重启服务器,线上设置为true,可以提高性能。
- suffix: .html
- #encoding: UTF-8
- #content-type: text/html
- mode: LEGACYHTML5
- warehouse:
- store:
- td-engine:
- enabled: true
- driver-class-name: com.taosdata.jdbc.rs.RestfulDriver
- url: jdbc:TAOS-RS://localhost:6041/hertzbeat
- username: root
- password: taosdata
|