From 066d3f3f9f16dcf71073db1a07a4ba7dcfccc2f0 Mon Sep 17 00:00:00 2001 From: RuoYi <yzz_ivy@163.com> Date: 星期四, 30 四月 2020 12:11:53 +0800 Subject: [PATCH] 修改定时任务详情下次执行时间日期显示错误 --- ruoyi/src/main/resources/application.yml | 22 +++++++++++++++++++--- 1 files changed, 19 insertions(+), 3 deletions(-) diff --git a/ruoyi/src/main/resources/application.yml b/ruoyi/src/main/resources/application.yml index a1f653d..34b1f43 100644 --- a/ruoyi/src/main/resources/application.yml +++ b/ruoyi/src/main/resources/application.yml @@ -3,7 +3,7 @@ # 名称 name: RuoYi # 版本 - version: 1.1.0 + version: 2.2.0 # 版权年份 copyrightYear: 2019 # 实例演示开关 @@ -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: # 过滤开关 @@ -106,4 +111,15 @@ # 排除链接(多个用逗号分隔) excludes: /system/notice/* # 匹配链接 - urlPatterns: /system/*,/monitor/*,/tool/* \ No newline at end of file + urlPatterns: /system/*,/monitor/*,/tool/* + +# 代码生成 +gen: + # 作者 + author: ruoyi + # 默认生成包路径 system 需改成自己的模块名称 如 system monitor tool + packageName: com.ruoyi.project.system + # 自动去除表前缀,默认是true + autoRemovePre: false + # 表前缀(生成类名不会包含表前缀,多个用逗号分隔) + tablePrefix: sys_ \ No newline at end of file -- Gitblit v1.9.2