| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- # 项目相关配置及信息
- rock:
- #名称
- name: IDEA Manage System
- #版本
- version: 1.0
- #版权年份
- copyrightYear: 2020
- #上传文件尺寸 默认200M
- fileSize: 209715200
- #上传路径
- profile: /home/project/settleDown/upload/
- # profile: d:/upload/pro/
- # 服务器运维管理
- ops:
- tag: server
- server:
- url: http://localhost:9001
- name: 基础运维平台
- client:
- id: opsTest1bc41a3cf4c2c3f1 #注意唯一性
- name: 基础运维平台
- os: windows #操作系统,windows, linux
- rock-wx:
- sign: AIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDz2fCOYaaU6sztFql4cOmiFRq2
- app-id: wx6128592f2d9e84b6
- app-secret: c945048f896e224e1fb4f2a10df799ca
- mch-id:
- mch-key:
- notify-url:
- # 基础相关配置及信息
- server:
- port: 9016
- spring:
- profiles:
- # 数据库源,dev/prod/test
- active: prod
- messages:
- encoding: UTF-8
- servlet:
- multipart:
- max-request-size: 1000MB
- maxFileSize : 1000MB
- mvc: #静态文件
- static-path-pattern : /static/**
- jackson:
- time-zone: GMT+8
- date-format: yyyy-MM-dd HH:mm:ss
- kafka:
- bootstrap-servers: 47.92.103.21:9092
- # bootstrap-servers: 47.99.219.40:9092
- # bootstrap-servers: 47.113.226.116:9092
- producer:
- key-serializer: org.apache.kafka.common.serialization.StringSerializer
- value-serializer: org.apache.kafka.common.serialization.StringSerializer
- consumer:
- key-deserializer: org.apache.kafka.common.serialization.StringDeserializer
- value-deserializer: org.apache.kafka.common.serialization.StringDeserializer
- logging:
- config: classpath:logback-spring.xml
- pagehelper:
- # helperDialect: mysql
- reasonable: true
- supportMethodsArguments: true
- params: count=countSql
- auto-dialect: true
- auto-runtime-dialect: true
- mybatis :
- configuration :
- map-underscore-to-camel-case : true
- # mapperLocations : classpath*:mybatis/*/*.xml
- # executor-type : reuse
- # type-aliases-package : com.*.model
- swagger:
- production: true
- basic:
- enable: true
- username: root
- password: test
- #management:
- # endpoints:
- # enabled-by-default: false
- # server:
- # port: -1
|