1234567891011121314151617181920212223242526272829303132 |
- server:
- port: 8096
- spring:
- application:
- name: huimv-farm-cloud-environ
- #------DataSource-----
- datasource:
- url: jdbc:mysql://192.168.1.7:3306/huimv-farm-device?useUnicode=true&characterEncoding=UTF-8&useSSL=false&autoReconnect=true&serverTimezone=Asia/Shanghai
- username: root
- password: hm123456
- driver-class-name: com.mysql.cj.jdbc.Driver
- # driver-class-name: com.mysql.jdbc.Driver
- jpa:
- hibernate:
- ddl-auto: update
- database-platform: org.hibernate.dialect.MySQL5InnoDBDialect
- # Socket配置
- #socket:
- # # 监听端口 9001
- # listen:
- # #ip: 192.168.16.3
- # ip: 192.168.1.49
- # port: 10020
- # 线程池 - 保持线程数 20
- #pool-keep: 20
- # 线程池 - 核心线程数 10
- #pool-core: 10
- # 线程池 - 最大线程数 20
- #pool-max: 30
- # 线程队列容量 10
- #pool-queue-init: 10
|