石墨消解仪后端服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
836 B

3 months ago
3 months ago
3 months ago
3 months ago
  1. server:
  2. servlet:
  3. context-path: /
  4. port: 8080
  5. spring:
  6. application:
  7. name: graphite_digestion_service
  8. datasource:
  9. url: jdbc:sqlite:db/app.db
  10. driver-class-name: org.sqlite.JDBC
  11. sql:
  12. init:
  13. #always embedded never
  14. mode: always
  15. schema-locations: classpath:/sql/init.sql
  16. mybatis-plus:
  17. configuration:
  18. # 开启 SQL 日志输出(可选)
  19. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  20. # 如果需要加载 XML 文件(自定义 SQL),可配置 mapper-locations:
  21. mapper-locations: classpath*:mapper/*.xml
  22. #开启 SQL 打印,调试时方便查看
  23. logging:
  24. level:
  25. root: INFO
  26. org.mybatis: DEBUG
  27. springdoc:
  28. default-flat-param-object: true
  29. command_bus:
  30. device.enableCanBus: true
  31. iflytophald:
  32. ip: 192.168.1.140
  33. cmdch.port: 19004
  34. datach.port: 19005