application.yml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. # 项目相关配置及信息
  2. rock:
  3. #名称
  4. name: IDEA Manage System
  5. #版本
  6. version: 1.0
  7. #版权年份
  8. copyrightYear: 2020
  9. #上传文件尺寸 默认200M
  10. fileSize: 209715200
  11. #上传路径
  12. profile: /home/project/settleDown/upload/
  13. # profile: d:/upload/pro/
  14. # 服务器运维管理
  15. ops:
  16. tag: server
  17. server:
  18. url: http://localhost:9001
  19. name: 基础运维平台
  20. client:
  21. id: opsTest1bc41a3cf4c2c3f1 #注意唯一性
  22. name: 基础运维平台
  23. os: windows #操作系统,windows, linux
  24. rock-wx:
  25. sign: AIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDz2fCOYaaU6sztFql4cOmiFRq2
  26. app-id: wx6128592f2d9e84b6
  27. app-secret: c945048f896e224e1fb4f2a10df799ca
  28. mch-id:
  29. mch-key:
  30. notify-url:
  31. # 基础相关配置及信息
  32. server:
  33. port: 9016
  34. spring:
  35. profiles:
  36. # 数据库源,dev/prod/test
  37. active: prod
  38. messages:
  39. encoding: UTF-8
  40. servlet:
  41. multipart:
  42. max-request-size: 1000MB
  43. maxFileSize : 1000MB
  44. mvc: #静态文件
  45. static-path-pattern : /static/**
  46. jackson:
  47. time-zone: GMT+8
  48. date-format: yyyy-MM-dd HH:mm:ss
  49. kafka:
  50. bootstrap-servers: 47.92.103.21:9092
  51. # bootstrap-servers: 47.99.219.40:9092
  52. # bootstrap-servers: 47.113.226.116:9092
  53. producer:
  54. key-serializer: org.apache.kafka.common.serialization.StringSerializer
  55. value-serializer: org.apache.kafka.common.serialization.StringSerializer
  56. consumer:
  57. key-deserializer: org.apache.kafka.common.serialization.StringDeserializer
  58. value-deserializer: org.apache.kafka.common.serialization.StringDeserializer
  59. logging:
  60. config: classpath:logback-spring.xml
  61. pagehelper:
  62. # helperDialect: mysql
  63. reasonable: true
  64. supportMethodsArguments: true
  65. params: count=countSql
  66. auto-dialect: true
  67. auto-runtime-dialect: true
  68. mybatis :
  69. configuration :
  70. map-underscore-to-camel-case : true
  71. # mapperLocations : classpath*:mybatis/*/*.xml
  72. # executor-type : reuse
  73. # type-aliases-package : com.*.model
  74. swagger:
  75. production: true
  76. basic:
  77. enable: true
  78. username: root
  79. password: test
  80. #management:
  81. # endpoints:
  82. # enabled-by-default: false
  83. # server:
  84. # port: -1