From e3fe0ff13b68ce8855b55679a08663e527380fc7 Mon Sep 17 00:00:00 2001 From: liupopo Date: Wed, 20 Dec 2023 13:41:08 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/application-test.yml | 53 +++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 src/main/resources/application-test.yml diff --git a/src/main/resources/application-test.yml b/src/main/resources/application-test.yml new file mode 100644 index 0000000..8e707ed --- /dev/null +++ b/src/main/resources/application-test.yml @@ -0,0 +1,53 @@ +server: + port: 17202 +spring: + #数据库 + datasource: + url: jdbc:mysql://${MYSQL-HOST:172.18.0.4}:${MYSQL-PORT:3306}/${MYSQL-DB:jimureport}?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai + username: root + password: yxt_mysql_138 + driver-class-name: com.mysql.cj.jdbc.Driver +#持久层框架 +minidao: + base-package: org.jeecg.modules.jmreport.* +jeecg: + # local|minio|alioss + uploadType: local + # local + path: + #文件路径 + upload: /opt/upload + # alioss + oss: + endpoint: ?? + accessKey: ?? + secretKey: ?? + bucketName: jimureport + # minio + minio: + minio_url: http://minio.jeecg.com + minio_name: ?? + minio_pass: ?? + bucketName: ?? + #大屏报表参数设置 + jmreport: + #多租户模式,默认值为空(created:按照创建人隔离、tenant:按照租户隔离) + saasMode: created + # 平台上线安全配置 + firewall: + # 数据源安全 (开启后,不允许使用平台数据源、SQL解析加签并且不允许查询数据库) + dataSourceSafe: true + # 低代码开发模式(dev:开发模式,prod:发布模式—关闭在线报表设计功能,分配角色admin、lowdeveloper可放开限制) + lowCodeMode: prod + # 展示列数 + col: 100 + # 展示行数 + row: 200 + #自定义API接口的前缀 #{api_base_path}和#{domainURL}的值 + apiBasePath: http://127.0.0.1:17201 + pageSize: + - 8 +#输出sql日志 +logging: + level: + org.jeecg.modules.jmreport: info