From 4f1f0bdbd306e06c88e99408fb9a5a456f38162c Mon Sep 17 00:00:00 2001
From: RuoYi <yzz_ivy@163.com>
Date: Thu, 14 May 2020 14:27:47 +0800
Subject: [PATCH] 通用http发送方法增加参数 contentType 编码类型
---
ruoyi/src/main/resources/application.yml | 11 ++++++++---
1 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/ruoyi/src/main/resources/application.yml b/ruoyi/src/main/resources/application.yml
index b81d058..8de79e7 100644
--- a/ruoyi/src/main/resources/application.yml
+++ b/ruoyi/src/main/resources/application.yml
@@ -3,7 +3,7 @@
# 名称
name: RuoYi
# 版本
- version: 2.0.0
+ version: 2.2.0
# 版权年份
copyrightYear: 2019
# 实例演示开关
@@ -11,7 +11,7 @@
# 文件路径 示例( Windows配置D:/ruoyi/uploadPath,Linux配置 /home/ruoyi/uploadPath)
profile: D:/ruoyi/uploadPath
# 获取ip地址开关
- addressEnabled: true
+ addressEnabled: false
# 开发环境配置
server:
@@ -27,7 +27,6 @@
max-threads: 800
# Tomcat启动初始化的线程数,默认值25
min-spare-threads: 30
-
# 日志配置
logging:
@@ -61,6 +60,8 @@
host: localhost
# 端口,默认为6379
port: 6379
+ # 密码
+ password:
# 连接超时时间
timeout: 10s
lettuce:
@@ -99,6 +100,10 @@
supportMethodsArguments: true
params: count=countSql
+# Swagger配置
+swagger:
+ enable: true
+
# 防止XSS攻击
xss:
# 过滤开关
--
Gitblit v1.9.2