数据解析模块
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

application.yml 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # 生产环境配置
  2. server:
  3. port: 8887
  4. servlet:
  5. context-path: /
  6. tomcat:
  7. uri-encoding: UTF-8
  8. accept-count: 100
  9. threads:
  10. max: 200
  11. min-spare: 20
  12. # 日志配置
  13. logging:
  14. level:
  15. com.iot.platform: info
  16. com.iot.platform.mapper: info
  17. org.springframework: warn
  18. # Spring配置
  19. spring:
  20. profiles:
  21. active: druid
  22. servlet:
  23. multipart:
  24. max-file-size: 10MB
  25. max-request-size: 20MB
  26. devtools:
  27. restart:
  28. enabled: false
  29. redis:
  30. host: localhost
  31. port: 6379
  32. database: 0
  33. password: ${REDIS_PASSWORD:}
  34. timeout: 10s
  35. lettuce:
  36. pool:
  37. min-idle: 4
  38. max-idle: 16
  39. max-active: 16
  40. max-wait: 5s
  41. # MyBatis配置
  42. mybatis:
  43. typeAliasesPackage: com.iot.platform.domain
  44. mapperLocations: classpath*:mapper/**/*Mapper.xml
  45. # PageHelper分页插件
  46. pagehelper:
  47. helperDialect: mysql
  48. supportMethodsArguments: true
  49. params: count=countSql
  50. # Actuator 配置
  51. management:
  52. endpoints:
  53. web:
  54. exposure:
  55. include: health
  56. endpoint:
  57. health:
  58. show-details: never
  59. # IoT平台配置
  60. iot:
  61. mqtt:
  62. broker-url: tcp://47.104.204.180:1883
  63. username: ${MQTT_USERNAME:}
  64. password: ${MQTT_PASSWORD:}
  65. charge-station-topic: ${MQTT_CHARGE_STATION_TOPIC:station/ChargeStation/device/+/post/json}
  66. tdengine:
  67. url: jdbc:TAOS://127.0.0.1:6031/
  68. username: ${TDENGINE_USERNAME:}
  69. password: ${TDENGINE_PASSWORD:}