1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- server.port = 16200
- server.servlet.context-path = /energy-manage-service/
- server.tomcat.uri-encoding = UTF-8
- # 最大连接数
- server.tomcat.max-connections=100000
- # 最小空闲线程数
- server.tomcat.threads.min-spare=100
- # 最大线程数
- server.tomcat.threads.max=800
- # 当tomcat启动线程达到最大时,允许的最大排队请求个数
- server.tomcat.accept-count = 1000
- # server.tomcat.basedir = /opt/projecttmp
- server.maxHttpHeaderSize = 8192
- #请求数据量
- server.tomcat.max-http-form-post-size = 200MB
- #超时时间
- server.tomcat.connection-timeout = 180000
- # 应用名称
- spring.application.name = energy-manage-service
- # 自定义配置文件上传
- spring.servlet.multipart.enabled = true
- spring.servlet.multipart.max-file-size = 314572800
- spring.servlet.multipart.max-request-size= 1048576000
- # 全局时间格式转化
- #spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
- #spring.jackson.time-zone=GMT+8
- spring.jackson.serialization.write-dates-as-timestamps=true
- # 指定开发环境-由maven控制多环境
- spring.profiles.active = @profiles.active@
- # nacos 配置
- spring.cloud.nacos.config.server-addr = 192.168.50.234:8848
- spring.cloud.nacos.config.namespace = 79c42a7a-2c7d-4dcf-8a2c-b334271e2191
- spring.cloud.nacos.config.refreshable-dataids = application.properties
- spring.cloud.nacos.config.prefix = application
- spring.cloud.nacos.config.file-extension = properties
- spring.cloud.nacos.config.group = @profiles.active@
- # debug - sql显示
- logging.level.com.energy.manage.service.mappers= debug
- # 接口文档
- knife4j.enable=true
- spring.jackson.date-format = yyyy-MM-dd HH:mm
- spring.jackson.time-zone= GMT+8
- template.bzpower = http://192.168.50.234:6900/bucket-zhzn/template/%E6%A0%87%E5%87%86%E5%8A%9F%E7%8E%87%E6%9B%B2%E7%BA%BF%E6%A8%A1%E7%89%88.xlsx
- template.htpower = http://192.168.50.234:6900/bucket-zhzn/template/%E5%90%88%E5%90%8C%E5%8A%9F%E7%8E%87%E6%9B%B2%E7%BA%BF%E6%A8%A1%E7%89%88.xlsx
- template.field = http://192.168.50.234:6900/bucket-zhzn/template/%E9%A3%8E%E5%9C%BA%E8%A1%A8%E6%A8%A1%E7%89%88.xlsx
- template.draught = http://192.168.50.234:6900/bucket-zhzn/template/%E9%A3%8E%E6%9C%BA%E8%A1%A8%E6%A8%A1%E7%89%88.xlsx
- #算法调用默认值
- analysis.url= http://192.168.50.234:16200/energy-manage-service/analysis/analysisData
- #分析算法入参
- analysis.json= {}
- #需要特殊处理的图像设置属性
- graphSets.properties=generatorSpeed,generatorTorque,cp,tsr,pitchAngle,activePower
- #需要特设处理分析类型属性
- analysis.properties=configAnalysis
- #拦截器是否生效
- energy.login.enabled=true
|