| 1234567891011121314151617181920212223242526272829 |
- server:
- port: 5080
- swagger:
- enabled: true
- mybatis:
- mapper-locations: classpath:mappers/*xml
- type-aliases-package: com.iwbnet.iot.entity
- configuration:
- map-underscore-to-camel-case: true
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- # DataSource Config
- spring:
- datasource:
- type: com.alibaba.druid.pool.DruidDataSource
- url: jdbc:mysql://47.112.30.247:43308/iot_com?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false
- username: root
- password: 123456
- driver-class-name: com.mysql.cj.jdbc.Driver
- mvc:
- pathmatch:
- matching-strategy: ant_path_matcher
- mqtt:
- host: tcp://127.0.0.1:1883
- username: admin
- password: 123456
- clientId: vbdsm-hj212-iot
- sub: vbdsm/device/+/+,system/+/+
|