新增前端vue
This commit is contained in:
@@ -20,22 +20,13 @@ import org.springframework.boot.web.servlet.support.SpringBootServletInitializer
|
|||||||
@SpringBootApplication
|
@SpringBootApplication
|
||||||
public class ApiApplication extends SpringBootServletInitializer {
|
public class ApiApplication extends SpringBootServletInitializer {
|
||||||
|
|
||||||
private static final Logger logger = LoggerFactory.getLogger(ApiApplication.class);
|
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
SpringApplication.run(ApiApplication.class, args);
|
SpringApplication.run(ApiApplication.class, args);
|
||||||
logger.info(
|
|
||||||
"\n\n==============================================================\n"
|
|
||||||
+ "\n 启动完成,接口地址:http://127.0.0.1:{}\n"
|
|
||||||
+ "\n 默认管理账号: system 密码: admin\n"
|
|
||||||
+ "\n==============================================================\n",
|
|
||||||
Global.getProperty("server.port") + FileUtils.path("/"
|
|
||||||
+ Global.getProperty("server.servlet.context-path")));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
|
protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
|
||||||
this.setRegisterErrorPageFilter(false); // 错误页面有容器来处理,而不是SpringBoot
|
this.setRegisterErrorPageFilter(false);
|
||||||
return builder.sources(ApiApplication.class);
|
return builder.sources(ApiApplication.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -13,9 +13,9 @@ jdbc:
|
|||||||
# Mysql 数据库配置
|
# Mysql 数据库配置
|
||||||
type: mysql
|
type: mysql
|
||||||
driver: com.mysql.cj.jdbc.Driver
|
driver: com.mysql.cj.jdbc.Driver
|
||||||
url: jdbc:mysql://192.168.56.1:3306/jeesite?useSSL=false&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=CONVERT_TO_NULL&serverTimezone=Asia/Shanghai
|
url: jdbc:mysql://crontab.club:33069/worker?useSSL=false&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=CONVERT_TO_NULL&serverTimezone=Asia/Shanghai&nullCatalogMeansCurrent=true
|
||||||
username: jeesite
|
username: dream
|
||||||
password: jeesite
|
password: info_dream
|
||||||
testSql: SELECT 1
|
testSql: SELECT 1
|
||||||
|
|
||||||
# 数据库连接池配置
|
# 数据库连接池配置
|
||||||
|
|||||||
@@ -1,11 +1,10 @@
|
|||||||
|
|
||||||
#======================================#
|
#======================================#
|
||||||
#========== Project settings ==========#
|
#========== Project settings ==========#
|
||||||
#======================================#
|
#======================================#
|
||||||
|
|
||||||
# 产品或项目名称、软件开发公司名称
|
# 产品或项目名称、软件开发公司名称
|
||||||
productName: JeeSite Demo
|
productName: My-Worker
|
||||||
companyName: ThinkGem
|
companyName:
|
||||||
|
|
||||||
# 产品版本、版权年份
|
# 产品版本、版权年份
|
||||||
productVersion: V5.14
|
productVersion: V5.14
|
||||||
@@ -32,18 +31,18 @@ server:
|
|||||||
uri-encoding: UTF-8
|
uri-encoding: UTF-8
|
||||||
# 表单请求数据的最大大小
|
# 表单请求数据的最大大小
|
||||||
max-http-form-post-size: 20MB
|
max-http-form-post-size: 20MB
|
||||||
# # 客户端发送请求参数个数限制
|
# 客户端发送请求参数个数限制
|
||||||
# max-parameter-count: 10000
|
max-parameter-count: 10000
|
||||||
# # 文件上传的表单请求参数个数限制
|
# 文件上传的表单请求参数个数限制
|
||||||
# max-part-count: 50
|
max-part-count: 50
|
||||||
# # 进程的最大连接数
|
# 进程的最大连接数
|
||||||
# max-connections: 8192
|
max-connections: 8192
|
||||||
# # 连接数满后的排队个数
|
# 连接数满后的排队个数
|
||||||
# accept-count: 100
|
accept-count: 100
|
||||||
# # 线程数最大和最小个数
|
# 线程数最大和最小个数
|
||||||
# threads:
|
threads:
|
||||||
# max: 200
|
max: 200
|
||||||
# min-spare: 10
|
min-spare: 10
|
||||||
|
|
||||||
# 当 Nginx 为 https,tomcat 为 http 时,设置该选项为 true
|
# 当 Nginx 为 https,tomcat 为 http 时,设置该选项为 true
|
||||||
schemeHttps: false
|
schemeHttps: false
|
||||||
@@ -58,70 +57,11 @@ jdbc:
|
|||||||
# Mysql 数据库配置
|
# Mysql 数据库配置
|
||||||
type: mysql
|
type: mysql
|
||||||
driver: com.mysql.cj.jdbc.Driver
|
driver: com.mysql.cj.jdbc.Driver
|
||||||
url: jdbc:mysql://127.0.0.1:3306/jeesite_v5?useSSL=false&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=CONVERT_TO_NULL&serverTimezone=Asia/Shanghai&nullCatalogMeansCurrent=true
|
url: jdbc:mysql://crontab.club:33069/worker?useSSL=false&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=CONVERT_TO_NULL&serverTimezone=Asia/Shanghai&nullCatalogMeansCurrent=true
|
||||||
username: root
|
username: dream
|
||||||
password: 123456
|
password: info_dream
|
||||||
testSql: SELECT 1
|
testSql: SELECT 1
|
||||||
|
|
||||||
# # Oracle 数据库配置
|
|
||||||
# type: oracle
|
|
||||||
# driver: oracle.jdbc.OracleDriver
|
|
||||||
# url: jdbc:oracle:thin:@127.0.0.1:1521/orcl
|
|
||||||
# username: jeesite
|
|
||||||
# password: jeesite
|
|
||||||
# testSql: SELECT 1 FROM DUAL
|
|
||||||
|
|
||||||
# # Sql Server 数据库配置(2008 版本,请打开 /modules/core/pom.xml 文件,替换为 SqlServer 2008 驱动并编译打包 core 模块)
|
|
||||||
# type: mssql
|
|
||||||
# driver: net.sourceforge.jtds.jdbc.Driver
|
|
||||||
# url: jdbc:jtds:sqlserver://127.0.0.1:1433/jeesite
|
|
||||||
# username: jeesite
|
|
||||||
# password: jeesite
|
|
||||||
# testSql: SELECT 1
|
|
||||||
|
|
||||||
# # Sql Server 数据库配置(2012 及以上版本,请打开 /modules/core/pom.xml 文件,替换为 SqlServer 2021 驱动并编译打包 core 模块)
|
|
||||||
# type: mssql2012
|
|
||||||
# driver: com.microsoft.sqlserver.jdbc.SQLServerDriver
|
|
||||||
# url: jdbc:sqlserver://127.0.0.1:1433;DatabaseName=jeesite;encrypt=true;trustServerCertificate=true
|
|
||||||
# username: jeesite
|
|
||||||
# password: jeesite
|
|
||||||
# testSql: SELECT 1
|
|
||||||
|
|
||||||
# # PostgreSql 数据库配置
|
|
||||||
# type: postgresql
|
|
||||||
# driver: org.postgresql.Driver
|
|
||||||
# url: jdbc:postgresql://127.0.0.1:5432/jeesite
|
|
||||||
# username: jeesite
|
|
||||||
# password: jeesite
|
|
||||||
# testSql: SELECT 1
|
|
||||||
|
|
||||||
# # 达梦数据库配置,请勿使用 sysdba 用户
|
|
||||||
# type: dameng
|
|
||||||
# driver: dm.jdbc.driver.DmDriver
|
|
||||||
# url: jdbc:dm://127.0.0.1:5236/jeesite5?schema=jeesite5
|
|
||||||
# username: jeesite
|
|
||||||
# password: jeesite123
|
|
||||||
# testSql: SELECT 1 FROM DUAL
|
|
||||||
|
|
||||||
# # 人大金仓数据库配置
|
|
||||||
# type: kingbase
|
|
||||||
# driver: com.kingbase8.Driver
|
|
||||||
# url: jdbc:kingbase8://127.0.0.1:54321/jeesite?currentSchema=jeesite&UseServerPrepare=false
|
|
||||||
# username: jeesite
|
|
||||||
# password: jeesite
|
|
||||||
# testSql: SELECT 1 FROM DUAL
|
|
||||||
|
|
||||||
# # H2 数据库配置(请打开 /modules/core/pom.xml 文件,打开 H2 DB 驱动并编译打包 core 模块)
|
|
||||||
# type: h2
|
|
||||||
# driver: org.h2.Driver
|
|
||||||
# url: jdbc:h2:~/jeesite-db/jeesite
|
|
||||||
# username: jeesite
|
|
||||||
# password: jeesite
|
|
||||||
# testSql: SELECT 1
|
|
||||||
|
|
||||||
# 更多数据库的支持列表:
|
|
||||||
# https://jeesite.com/docs/technology/#%E4%B8%83%E3%80%81%E5%B7%B2%E6%94%AF%E6%8C%81%E6%95%B0%E6%8D%AE%E5%BA%93
|
|
||||||
|
|
||||||
# 连接信息加密
|
# 连接信息加密
|
||||||
encrypt:
|
encrypt:
|
||||||
|
|
||||||
@@ -140,127 +80,6 @@ jdbc:
|
|||||||
# 最大激活连接数
|
# 最大激活连接数
|
||||||
maxActive: 20
|
maxActive: 20
|
||||||
|
|
||||||
# # 连接超时参数,单位毫秒 (v5.5.2+)
|
|
||||||
# connectTimeout: ~
|
|
||||||
# socketTimeout: ~
|
|
||||||
#
|
|
||||||
# # 查询超时时间,事务超时时间 (v5.7.1+)
|
|
||||||
# queryTimeout: ~
|
|
||||||
# transactionQueryTimeout: ~
|
|
||||||
#
|
|
||||||
# # 获取连接等待超时时间,单位毫秒(1分钟)(4.0.6+)
|
|
||||||
# maxWait: 60000
|
|
||||||
#
|
|
||||||
# # 连接失败后中断,默认为 false 时,会一直尝试连接,为 true 时,自动中断尝试(v5.9.0+)
|
|
||||||
# breakAfterAcquireFailure: false
|
|
||||||
#
|
|
||||||
# # 从池中取出和归还连接前进行检验,如果检验失败,则从池中去除连接并尝试取出另一个(4.0.6+)
|
|
||||||
# testOnBorrow: false
|
|
||||||
# testOnReturn: false
|
|
||||||
#
|
|
||||||
# # 间隔多久才进行一次检测,检测需要关闭的空闲连接,单位毫秒(1分钟)(4.0.6+)
|
|
||||||
# timeBetweenEvictionRunsMillis: 60000
|
|
||||||
#
|
|
||||||
# # 一个连接在池中最小空闲的时间,单位毫秒(20分钟)(4.0.6+)
|
|
||||||
# minEvictableIdleTimeMillis: 1200000
|
|
||||||
# # 一个连接在池中最大空闲的时间,单位毫秒(30分钟)(4.1.2+)
|
|
||||||
# maxEvictableIdleTimeMillis: 1800000
|
|
||||||
#
|
|
||||||
# # 连接池中的minIdle数量以内的连接,空闲时间超过minEvictableIdleTimeMillis,则会执行keepAlive操作(4.1.8+)
|
|
||||||
# keepAlive: false
|
|
||||||
#
|
|
||||||
# # 是否自动回收泄露的连接和超时时间,单位秒(35分钟)(4.0.6+)
|
|
||||||
# removeAbandoned: false
|
|
||||||
# removeAbandonedTimeout: 2100
|
|
||||||
#
|
|
||||||
# # 是否缓存 PreparedStatement 对象的最大数量(4.1.5+)
|
|
||||||
# maxPoolPreparedStatementPerConnectionSize: ~
|
|
||||||
#
|
|
||||||
# # 设置连接属性,可获取到表的 remark (备注)
|
|
||||||
# remarksReporting: false
|
|
||||||
|
|
||||||
# # 读写分离配置(专业版)v4.3.0
|
|
||||||
# readwriteSplitting:
|
|
||||||
# # 读库的数据源名称列表(默认数据源)
|
|
||||||
# readDataSourceNames: ds_read_01, ds_read_02
|
|
||||||
# # 负载均衡算法(ROUND_ROBIN轮询、RANDOM随机、自定义类名)
|
|
||||||
# loadBalancerAlgorithm: RANDOM
|
|
||||||
#
|
|
||||||
# # 多数据源名称列表,多个用逗号隔开,使用方法:@MyBatisDao(dataSourceName="ds2")
|
|
||||||
# # v5.11.1+ 支持 dataSourceNames 免配置,自动读取 jdbc.数据源名.type 的属性
|
|
||||||
# dataSourceNames: ds_read_01, ds_read_02
|
|
||||||
#
|
|
||||||
# # 默认数据源的从库01
|
|
||||||
# ds_read_01:
|
|
||||||
# type: mysql
|
|
||||||
# driver: com.mysql.cj.jdbc.Driver
|
|
||||||
# url: jdbc:mysql://127.0.0.1:3306/jeesite_test?useSSL=false&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=CONVERT_TO_NULL&serverTimezone=Asia/Shanghai
|
|
||||||
# username: root
|
|
||||||
# password: 123456
|
|
||||||
# testSql: SELECT 1
|
|
||||||
# pool:
|
|
||||||
# init: 1
|
|
||||||
# minIdle: 3
|
|
||||||
# maxActive: 20
|
|
||||||
#
|
|
||||||
# # 默认数据源的从库02
|
|
||||||
# ds_read_02:
|
|
||||||
# type: mysql
|
|
||||||
# driver: com.mysql.cj.jdbc.Driver
|
|
||||||
# url: jdbc:mysql://127.0.0.1:3306/jeesite_test2?useSSL=false&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=CONVERT_TO_NULL&serverTimezone=Asia/Shanghai
|
|
||||||
# username: root
|
|
||||||
# password: 123456
|
|
||||||
# testSql: SELECT 1
|
|
||||||
# pool:
|
|
||||||
# init: 1
|
|
||||||
# minIdle: 3
|
|
||||||
# maxActive: 20
|
|
||||||
|
|
||||||
# # 多数据源名称列表,多个用逗号隔开,使用方法:@MyBatisDao(dataSourceName="ds2")
|
|
||||||
# # v5.11.1+ 支持 dataSourceNames 免配置,自动读取 jdbc.数据源名.type 的属性
|
|
||||||
# dataSourceNames: ds2
|
|
||||||
#
|
|
||||||
# # 多数据源配置:ds2
|
|
||||||
# ds2:
|
|
||||||
# type: mysql
|
|
||||||
# driver: com.mysql.cj.jdbc.Driver
|
|
||||||
# url: jdbc:mysql://127.0.0.1:3306/jeesite2?useSSL=false&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=CONVERT_TO_NULL&serverTimezone=Asia/Shanghai
|
|
||||||
# username: root
|
|
||||||
# password: 123456
|
|
||||||
# testSql: SELECT 1
|
|
||||||
# # 其它数据源支持密码加密
|
|
||||||
# encrypt:
|
|
||||||
# username: false
|
|
||||||
# password: true
|
|
||||||
# # 其它数据源支持连接池设置
|
|
||||||
# pool:
|
|
||||||
# init: 1
|
|
||||||
# minIdle: 3
|
|
||||||
# maxActive: 20
|
|
||||||
# # 其它数据源支持读写分离
|
|
||||||
# readwriteSplitting:
|
|
||||||
# readDataSourceNames: ~
|
|
||||||
# loadBalancerAlgorithm: RANDOM
|
|
||||||
|
|
||||||
# # 数据源映射(Dao类名 = 数据源名称),优先于 @MyBatisDao(dataSourceName="ds2") 设置 v4.3.0
|
|
||||||
# # Dao类名,不仅支持某个具体 Dao类名,还支持 Dao 里的某个方法指定数据源名称,还支持包路径指定数据源等
|
|
||||||
# # 数据源名指定 {dynamic} 时支持动态,相当于 @MyBatisDao(dataSourceName=DataSourceHolder.DYNAMIC)
|
|
||||||
# # 数据源支持指定变量 {corpCode}、 {userCode}、{userCache中的Key名}、{yml或sys_config中的Key名}
|
|
||||||
# # 从上到下,先匹配先受用规则,默认数据源名为 default 扩展数据源为 dataSourceNames 列表里自定义的名字
|
|
||||||
# mybatisDaoAndDataSourceMappings: |
|
|
||||||
# TestDataChildDao = ds2
|
|
||||||
# EmpUserDao.findList = ds2
|
|
||||||
# com.jeesite.modules.sys. = default
|
|
||||||
# com.jeesite.modules.filemanager. = ds2
|
|
||||||
|
|
||||||
# # 表名和字段名(前缀|后缀)是否强制大写(v4.1.8+)
|
|
||||||
# tableAndColumn:
|
|
||||||
# prefixSuffix: "`|`"
|
|
||||||
# forceUpperCase: true
|
|
||||||
#
|
|
||||||
# # 表名前缀
|
|
||||||
# tablePrefix: js_
|
|
||||||
|
|
||||||
#======================================#
|
#======================================#
|
||||||
#========== Spring settings ===========#
|
#========== Spring settings ===========#
|
||||||
#======================================#
|
#======================================#
|
||||||
@@ -289,46 +108,10 @@ spring:
|
|||||||
jta:
|
jta:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
# 注意:如果报 oracle.jdbc.xa.OracleXAResource.recover 错误,则需要授权如下:
|
|
||||||
# grant select on sys.dba_pending_transactions to jeesite;
|
|
||||||
# grant select on sys.pending_trans$ to jeesite;
|
|
||||||
# grant select on sys.dba_2pc_pending to jeesite;
|
|
||||||
# grant execute on sys.dbms_system to jeesite;
|
|
||||||
|
|
||||||
# 事务超时时间,单位秒(30分钟)(spring boot 3)
|
# 事务超时时间,单位秒(30分钟)(spring boot 3)
|
||||||
transaction:
|
transaction:
|
||||||
default-timeout: 30m
|
default-timeout: 30m
|
||||||
|
|
||||||
# # Redis 连接参数 (RedisProperties)
|
|
||||||
# data:
|
|
||||||
# redis:
|
|
||||||
# host: 127.0.0.1
|
|
||||||
# port: 6379
|
|
||||||
# ssl:
|
|
||||||
# enabled: false
|
|
||||||
# database: 0
|
|
||||||
# password: 1234
|
|
||||||
# timeout: 20000
|
|
||||||
# lettuce:
|
|
||||||
# pool:
|
|
||||||
# # 最大空闲连接数
|
|
||||||
# maxIdle: 3
|
|
||||||
# # 最大活动连接数
|
|
||||||
# maxActive: 20
|
|
||||||
|
|
||||||
# # 缓存配置
|
|
||||||
# cache:
|
|
||||||
# # 缓存及会话共享(专业版)
|
|
||||||
# isClusterMode: true
|
|
||||||
# # 清理全部缓存按钮所清理的缓存列表
|
|
||||||
# clearNames: sysCache,corpCache,userCache,roleCache,fileUploadCache,msgPcPoolCache,cmsCache,bpmFormCache
|
|
||||||
# # 用户缓存
|
|
||||||
# userCache:
|
|
||||||
# clearTaskPool:
|
|
||||||
# corePoolSize: 5
|
|
||||||
# maxPoolSize: 20
|
|
||||||
# keepAliveSeconds: 60
|
|
||||||
|
|
||||||
# 日志配置(fatal、error、warn、info、debug)
|
# 日志配置(fatal、error、warn、info、debug)
|
||||||
logging:
|
logging:
|
||||||
config: classpath:config/logback-spring.xml
|
config: classpath:config/logback-spring.xml
|
||||||
@@ -924,7 +707,7 @@ file:
|
|||||||
enabled: true
|
enabled: true
|
||||||
|
|
||||||
# # 文件上传根路径,设置路径中不允许包含“userfiles”,在指定目录中系统会自动创建userfiles目录,如果不设置默认为contextPath路径
|
# # 文件上传根路径,设置路径中不允许包含“userfiles”,在指定目录中系统会自动创建userfiles目录,如果不设置默认为contextPath路径
|
||||||
# #baseDir: D:/jeesite
|
baseDir: /ogsapp/data
|
||||||
#
|
#
|
||||||
# # 上传文件的相对路径(支持:yyyy、MM、dd、HH、mm、ss、E、bizType、corpCode、userCode、userType、userCache中的key)
|
# # 上传文件的相对路径(支持:yyyy、MM、dd、HH、mm、ss、E、bizType、corpCode、userCode、userType、userCache中的key)
|
||||||
# uploadPath: '{yyyy}{MM}/'
|
# uploadPath: '{yyyy}{MM}/'
|
||||||
|
|||||||
@@ -58,70 +58,11 @@ jdbc:
|
|||||||
# Mysql 数据库配置
|
# Mysql 数据库配置
|
||||||
type: mysql
|
type: mysql
|
||||||
driver: com.mysql.cj.jdbc.Driver
|
driver: com.mysql.cj.jdbc.Driver
|
||||||
url: jdbc:mysql://127.0.0.1:3306/jeesite_v5?useSSL=false&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=CONVERT_TO_NULL&serverTimezone=Asia/Shanghai&nullCatalogMeansCurrent=true
|
url: jdbc:mysql://crontab.club:33069/worker?useSSL=false&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=CONVERT_TO_NULL&serverTimezone=Asia/Shanghai&nullCatalogMeansCurrent=true
|
||||||
username: root
|
username: dream
|
||||||
password: 123456
|
password: info_dream
|
||||||
testSql: SELECT 1
|
testSql: SELECT 1
|
||||||
|
|
||||||
# # Oracle 数据库配置
|
|
||||||
# type: oracle
|
|
||||||
# driver: oracle.jdbc.OracleDriver
|
|
||||||
# url: jdbc:oracle:thin:@127.0.0.1:1521/orcl
|
|
||||||
# username: jeesite
|
|
||||||
# password: jeesite
|
|
||||||
# testSql: SELECT 1 FROM DUAL
|
|
||||||
|
|
||||||
# # Sql Server 数据库配置(2008 版本,请打开 /modules/core/pom.xml 文件,替换为 SqlServer 2008 驱动并编译打包 core 模块)
|
|
||||||
# type: mssql
|
|
||||||
# driver: net.sourceforge.jtds.jdbc.Driver
|
|
||||||
# url: jdbc:jtds:sqlserver://127.0.0.1:1433/jeesite
|
|
||||||
# username: jeesite
|
|
||||||
# password: jeesite
|
|
||||||
# testSql: SELECT 1
|
|
||||||
|
|
||||||
# # Sql Server 数据库配置(2012 及以上版本,请打开 /modules/core/pom.xml 文件,替换为 SqlServer 2021 驱动并编译打包 core 模块)
|
|
||||||
# type: mssql2012
|
|
||||||
# driver: com.microsoft.sqlserver.jdbc.SQLServerDriver
|
|
||||||
# url: jdbc:sqlserver://127.0.0.1:1433;DatabaseName=jeesite;encrypt=true;trustServerCertificate=true
|
|
||||||
# username: jeesite
|
|
||||||
# password: jeesite
|
|
||||||
# testSql: SELECT 1
|
|
||||||
|
|
||||||
# # PostgreSql 数据库配置
|
|
||||||
# type: postgresql
|
|
||||||
# driver: org.postgresql.Driver
|
|
||||||
# url: jdbc:postgresql://127.0.0.1:5432/jeesite
|
|
||||||
# username: jeesite
|
|
||||||
# password: jeesite
|
|
||||||
# testSql: SELECT 1
|
|
||||||
|
|
||||||
# # 达梦数据库配置,请勿使用 sysdba 用户
|
|
||||||
# type: dameng
|
|
||||||
# driver: dm.jdbc.driver.DmDriver
|
|
||||||
# url: jdbc:dm://127.0.0.1:5236/jeesite5?schema=jeesite5
|
|
||||||
# username: jeesite
|
|
||||||
# password: jeesite123
|
|
||||||
# testSql: SELECT 1 FROM DUAL
|
|
||||||
|
|
||||||
# # 人大金仓数据库配置
|
|
||||||
# type: kingbase
|
|
||||||
# driver: com.kingbase8.Driver
|
|
||||||
# url: jdbc:kingbase8://127.0.0.1:54321/jeesite?currentSchema=jeesite&UseServerPrepare=false
|
|
||||||
# username: jeesite
|
|
||||||
# password: jeesite
|
|
||||||
# testSql: SELECT 1 FROM DUAL
|
|
||||||
|
|
||||||
# # H2 数据库配置(请打开 /modules/core/pom.xml 文件,打开 H2 DB 驱动并编译打包 core 模块)
|
|
||||||
# type: h2
|
|
||||||
# driver: org.h2.Driver
|
|
||||||
# url: jdbc:h2:~/jeesite-db/jeesite
|
|
||||||
# username: jeesite
|
|
||||||
# password: jeesite
|
|
||||||
# testSql: SELECT 1
|
|
||||||
|
|
||||||
# 更多数据库的支持列表:
|
|
||||||
# https://jeesite.com/docs/technology/#%E4%B8%83%E3%80%81%E5%B7%B2%E6%94%AF%E6%8C%81%E6%95%B0%E6%8D%AE%E5%BA%93
|
|
||||||
|
|
||||||
# 连接信息加密
|
# 连接信息加密
|
||||||
encrypt:
|
encrypt:
|
||||||
|
|
||||||
@@ -140,127 +81,6 @@ jdbc:
|
|||||||
# 最大激活连接数
|
# 最大激活连接数
|
||||||
maxActive: 20
|
maxActive: 20
|
||||||
|
|
||||||
# # 连接超时参数,单位毫秒 (v5.5.2+)
|
|
||||||
# connectTimeout: ~
|
|
||||||
# socketTimeout: ~
|
|
||||||
#
|
|
||||||
# # 查询超时时间,事务超时时间 (v5.7.1+)
|
|
||||||
# queryTimeout: ~
|
|
||||||
# transactionQueryTimeout: ~
|
|
||||||
#
|
|
||||||
# # 获取连接等待超时时间,单位毫秒(1分钟)(4.0.6+)
|
|
||||||
# maxWait: 60000
|
|
||||||
#
|
|
||||||
# # 连接失败后中断,默认为 false 时,会一直尝试连接,为 true 时,自动中断尝试(v5.9.0+)
|
|
||||||
# breakAfterAcquireFailure: false
|
|
||||||
#
|
|
||||||
# # 从池中取出和归还连接前进行检验,如果检验失败,则从池中去除连接并尝试取出另一个(4.0.6+)
|
|
||||||
# testOnBorrow: false
|
|
||||||
# testOnReturn: false
|
|
||||||
#
|
|
||||||
# # 间隔多久才进行一次检测,检测需要关闭的空闲连接,单位毫秒(1分钟)(4.0.6+)
|
|
||||||
# timeBetweenEvictionRunsMillis: 60000
|
|
||||||
#
|
|
||||||
# # 一个连接在池中最小空闲的时间,单位毫秒(20分钟)(4.0.6+)
|
|
||||||
# minEvictableIdleTimeMillis: 1200000
|
|
||||||
# # 一个连接在池中最大空闲的时间,单位毫秒(30分钟)(4.1.2+)
|
|
||||||
# maxEvictableIdleTimeMillis: 1800000
|
|
||||||
#
|
|
||||||
# # 连接池中的minIdle数量以内的连接,空闲时间超过minEvictableIdleTimeMillis,则会执行keepAlive操作(4.1.8+)
|
|
||||||
# keepAlive: false
|
|
||||||
#
|
|
||||||
# # 是否自动回收泄露的连接和超时时间,单位秒(35分钟)(4.0.6+)
|
|
||||||
# removeAbandoned: false
|
|
||||||
# removeAbandonedTimeout: 2100
|
|
||||||
#
|
|
||||||
# # 是否缓存 PreparedStatement 对象的最大数量(4.1.5+)
|
|
||||||
# maxPoolPreparedStatementPerConnectionSize: ~
|
|
||||||
#
|
|
||||||
# # 设置连接属性,可获取到表的 remark (备注)
|
|
||||||
# remarksReporting: false
|
|
||||||
|
|
||||||
# # 读写分离配置(专业版)v4.3.0
|
|
||||||
# readwriteSplitting:
|
|
||||||
# # 读库的数据源名称列表(默认数据源)
|
|
||||||
# readDataSourceNames: ds_read_01, ds_read_02
|
|
||||||
# # 负载均衡算法(ROUND_ROBIN轮询、RANDOM随机、自定义类名)
|
|
||||||
# loadBalancerAlgorithm: RANDOM
|
|
||||||
#
|
|
||||||
# # 多数据源名称列表,多个用逗号隔开,使用方法:@MyBatisDao(dataSourceName="ds2")
|
|
||||||
# # v5.11.1+ 支持 dataSourceNames 免配置,自动读取 jdbc.数据源名.type 的属性
|
|
||||||
# dataSourceNames: ds_read_01, ds_read_02
|
|
||||||
#
|
|
||||||
# # 默认数据源的从库01
|
|
||||||
# ds_read_01:
|
|
||||||
# type: mysql
|
|
||||||
# driver: com.mysql.cj.jdbc.Driver
|
|
||||||
# url: jdbc:mysql://127.0.0.1:3306/jeesite_test?useSSL=false&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=CONVERT_TO_NULL&serverTimezone=Asia/Shanghai
|
|
||||||
# username: root
|
|
||||||
# password: 123456
|
|
||||||
# testSql: SELECT 1
|
|
||||||
# pool:
|
|
||||||
# init: 1
|
|
||||||
# minIdle: 3
|
|
||||||
# maxActive: 20
|
|
||||||
#
|
|
||||||
# # 默认数据源的从库02
|
|
||||||
# ds_read_02:
|
|
||||||
# type: mysql
|
|
||||||
# driver: com.mysql.cj.jdbc.Driver
|
|
||||||
# url: jdbc:mysql://127.0.0.1:3306/jeesite_test2?useSSL=false&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=CONVERT_TO_NULL&serverTimezone=Asia/Shanghai
|
|
||||||
# username: root
|
|
||||||
# password: 123456
|
|
||||||
# testSql: SELECT 1
|
|
||||||
# pool:
|
|
||||||
# init: 1
|
|
||||||
# minIdle: 3
|
|
||||||
# maxActive: 20
|
|
||||||
|
|
||||||
# # 多数据源名称列表,多个用逗号隔开,使用方法:@MyBatisDao(dataSourceName="ds2")
|
|
||||||
# # v5.11.1+ 支持 dataSourceNames 免配置,自动读取 jdbc.数据源名.type 的属性
|
|
||||||
# dataSourceNames: ds2
|
|
||||||
#
|
|
||||||
# # 多数据源配置:ds2
|
|
||||||
# ds2:
|
|
||||||
# type: mysql
|
|
||||||
# driver: com.mysql.cj.jdbc.Driver
|
|
||||||
# url: jdbc:mysql://127.0.0.1:3306/jeesite_test?useSSL=false&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=CONVERT_TO_NULL&serverTimezone=Asia/Shanghai
|
|
||||||
# username: root
|
|
||||||
# password: 123456
|
|
||||||
# testSql: SELECT 1
|
|
||||||
# # 其它数据源支持密码加密
|
|
||||||
# encrypt:
|
|
||||||
# username: false
|
|
||||||
# password: true
|
|
||||||
# # 其它数据源支持连接池设置
|
|
||||||
# pool:
|
|
||||||
# init: 1
|
|
||||||
# minIdle: 3
|
|
||||||
# maxActive: 20
|
|
||||||
# # 其它数据源支持读写分离
|
|
||||||
# readwriteSplitting:
|
|
||||||
# readDataSourceNames: ~
|
|
||||||
# loadBalancerAlgorithm: RANDOM
|
|
||||||
|
|
||||||
# # 数据源映射(Dao类名 = 数据源名称),优先于 @MyBatisDao(dataSourceName="ds2") 设置 v4.3.0
|
|
||||||
# # Dao类名,不仅支持某个具体 Dao类名,还支持 Dao 里的某个方法指定数据源名称,还支持包路径指定数据源等
|
|
||||||
# # 数据源名指定 {dynamic} 时支持动态,相当于 @MyBatisDao(dataSourceName=DataSourceHolder.DYNAMIC)
|
|
||||||
# # 数据源支持指定变量 {corpCode}、 {userCode}、{userCache中的Key名}、{yml或sys_config中的Key名}
|
|
||||||
# # 从上到下,先匹配先受用规则,默认数据源名为 default 扩展数据源为 dataSourceNames 列表里自定义的名字
|
|
||||||
# mybatisDaoAndDataSourceMappings: |
|
|
||||||
# TestDataChildDao = ds2
|
|
||||||
# EmpUserDao.findList = ds2
|
|
||||||
# com.jeesite.modules.sys. = default
|
|
||||||
# com.jeesite.modules.filemanager. = ds2
|
|
||||||
|
|
||||||
# # 表名和字段名(前缀|后缀)是否强制大写(v4.1.8+)
|
|
||||||
# tableAndColumn:
|
|
||||||
# prefixSuffix: "`|`"
|
|
||||||
# forceUpperCase: true
|
|
||||||
#
|
|
||||||
# # 表名前缀
|
|
||||||
# tablePrefix: js_
|
|
||||||
|
|
||||||
#======================================#
|
#======================================#
|
||||||
#========== Spring settings ===========#
|
#========== Spring settings ===========#
|
||||||
#======================================#
|
#======================================#
|
||||||
@@ -289,46 +109,10 @@ spring:
|
|||||||
jta:
|
jta:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
# 注意:如果报 oracle.jdbc.xa.OracleXAResource.recover 错误,则需要授权如下:
|
|
||||||
# grant select on sys.dba_pending_transactions to jeesite;
|
|
||||||
# grant select on sys.pending_trans$ to jeesite;
|
|
||||||
# grant select on sys.dba_2pc_pending to jeesite;
|
|
||||||
# grant execute on sys.dbms_system to jeesite;
|
|
||||||
|
|
||||||
# 事务超时时间,单位秒(30分钟)(spring boot 3)
|
# 事务超时时间,单位秒(30分钟)(spring boot 3)
|
||||||
transaction:
|
transaction:
|
||||||
default-timeout: 30m
|
default-timeout: 30m
|
||||||
|
|
||||||
# # Redis 连接参数 (RedisProperties)
|
|
||||||
# data:
|
|
||||||
# redis:
|
|
||||||
# host: 127.0.0.1
|
|
||||||
# port: 6379
|
|
||||||
# ssl:
|
|
||||||
# enabled: false
|
|
||||||
# database: 0
|
|
||||||
# password: 1234
|
|
||||||
# timeout: 20000
|
|
||||||
# lettuce:
|
|
||||||
# pool:
|
|
||||||
# # 最大空闲连接数
|
|
||||||
# maxIdle: 3
|
|
||||||
# # 最大活动连接数
|
|
||||||
# maxActive: 20
|
|
||||||
|
|
||||||
# # 缓存配置
|
|
||||||
# cache:
|
|
||||||
# # 缓存及会话共享(专业版)
|
|
||||||
# isClusterMode: true
|
|
||||||
# # 清理全部缓存按钮所清理的缓存列表
|
|
||||||
# clearNames: sysCache,corpCache,userCache,roleCache,fileUploadCache,msgPcPoolCache,cmsCache,bpmFormCache
|
|
||||||
# # 用户缓存
|
|
||||||
# userCache:
|
|
||||||
# clearTaskPool:
|
|
||||||
# corePoolSize: 5
|
|
||||||
# maxPoolSize: 20
|
|
||||||
# keepAliveSeconds: 60
|
|
||||||
|
|
||||||
# 日志配置(fatal、error、warn、info、debug)
|
# 日志配置(fatal、error、warn、info、debug)
|
||||||
logging:
|
logging:
|
||||||
config: classpath:config/logback-spring.xml
|
config: classpath:config/logback-spring.xml
|
||||||
@@ -345,28 +129,6 @@ mybatis:
|
|||||||
# TypeAliases 扫描基础包,如果多个,用“,”分隔 v5.3.1
|
# TypeAliases 扫描基础包,如果多个,用“,”分隔 v5.3.1
|
||||||
scanTypeAliasesBasePackage: com.jeesite.modules.**.entity
|
scanTypeAliasesBasePackage: com.jeesite.modules.**.entity
|
||||||
|
|
||||||
# # TypeHandlers 扫描基础包,如果多个,用“,”分隔
|
|
||||||
# scanTypeHandlersPackage: ~
|
|
||||||
#
|
|
||||||
# # 是否开启 JDBC 管理事务,默认 Spring 管理事务 v4.2.3
|
|
||||||
# jdbcTransaction: false
|
|
||||||
#
|
|
||||||
# # 批量插入和更新的分批默认大小(防止库一次性接受不了太大的sql语句)
|
|
||||||
# defaultBatchSize: 500
|
|
||||||
#
|
|
||||||
# # 执行逻辑删除的时候,同时修改主键字段值,方便再次使用这个主键值(调用 entity.sqlMap().markIdDelete() 时生效) v5.4.0+
|
|
||||||
# # 案例分析(角色管理场景):
|
|
||||||
# # 1.如果是逻辑删除数据,并非物理删除,所以删除了角色 abc 再次新增时,会提示 abc 编号已存在
|
|
||||||
# # 2.使用方法为:在 super.delete(entity); 前调用:entity.sqlMap().markIdDelete();
|
|
||||||
# # 3.一般在手动填写主键业务中使用,启用后将会在删除后,修改 ID 值数据,例如:abc__del_随机串
|
|
||||||
# markIdDeleteFlag: __del_
|
|
||||||
#
|
|
||||||
# # 允许 @Table orderBy 排序 设置为空,否则默认使用 主键 排序 v4.5.0 v5.1.0
|
|
||||||
# allowOrderEmpty: true
|
|
||||||
#
|
|
||||||
# # 排序字段 SQL 过滤,该参数仅对 sqlMap.getOrder().setOrderBy 内部调用方法有效 page.setOrderBy 和 entity.setOrderBy 必须经过过滤 v5.12.0
|
|
||||||
# orderBySqlFilter: false
|
|
||||||
|
|
||||||
# Mapper文件刷新线程
|
# Mapper文件刷新线程
|
||||||
mapper:
|
mapper:
|
||||||
refresh:
|
refresh:
|
||||||
@@ -379,174 +141,12 @@ mybatis:
|
|||||||
#========== System settings ===========#
|
#========== System settings ===========#
|
||||||
#======================================#
|
#======================================#
|
||||||
|
|
||||||
# 管理基础路径
|
|
||||||
#adminPath: /a
|
|
||||||
|
|
||||||
# 前端基础路径
|
|
||||||
#frontPath: /f
|
|
||||||
|
|
||||||
# 加密设置
|
|
||||||
#encrypt:
|
|
||||||
# # 默认秘钥,可通过 AesUtils.genKeyString() 生成新秘钥 Hex 编码
|
|
||||||
# defaultKey: 9f58a20946b47e190003ec716c1c457d
|
|
||||||
# # 是否使用国密 SM 算法(SHA-1 替换为 SM3、AES 替换为 SM4)
|
|
||||||
# smAlgorithm: false
|
|
||||||
# # 对称或非对称加密是否使用 Base64 存储,默认 Hex 存储
|
|
||||||
# storeBase64: false
|
|
||||||
|
|
||||||
# 分页相关
|
|
||||||
#page:
|
|
||||||
#
|
|
||||||
# # 默认每页显示的数据条数
|
|
||||||
# pageSize: 20
|
|
||||||
#
|
|
||||||
# # 每页最大条数,防止分页过大导致系统缓慢或内存溢出
|
|
||||||
# maxPageSize: 999
|
|
||||||
|
|
||||||
# 用户相关
|
# 用户相关
|
||||||
user:
|
user:
|
||||||
|
|
||||||
# # 指定超级管理员编号(研发团队使用的账号)
|
|
||||||
# superAdminCode: system
|
|
||||||
#
|
|
||||||
# # 超级管理员获取菜单的最小权重(默认20;>=40二级管理员;>=60系统管理员;>=80超级管理员)
|
|
||||||
# superAdminGetMenuMinWeight: 40
|
|
||||||
#
|
|
||||||
# # 系统管理员角色编号(客户方管理员使用的角色)
|
|
||||||
# corpAdminRoleCode: corpAdmin
|
|
||||||
#
|
|
||||||
# # 二级管理员的控制权限类型(1拥有的权限 2管理的权限,管理功能包括:用户管理、组织机构、公司管理等)(v4.1.5+)
|
|
||||||
# adminCtrlPermi: 2
|
|
||||||
#
|
|
||||||
# # 是否启用岗位角色,开启后将 用户->岗位->关联角色,纳入菜单和权限管理 v5.9.2
|
|
||||||
# postRolePermi: false
|
|
||||||
#
|
|
||||||
# # 是否启用切换部门功能,再开启启用岗位角色后可支持 用户->附属部门->岗位->关联角色,纳入菜单和权限管理 v5.10.1
|
|
||||||
# switchOffice: false
|
|
||||||
#
|
|
||||||
# # 登录后激活当前用户所在的主部门,默认为不激活即混合权限
|
|
||||||
# loginAfterActiveMainOffice: false
|
|
||||||
|
|
||||||
# 多租户模式(SAAS模式)(专业版)
|
# 多租户模式(SAAS模式)(专业版)
|
||||||
useCorpModel: false
|
useCorpModel: false
|
||||||
|
|
||||||
# # 登录账号是否租户内唯一,否则全局唯一
|
|
||||||
# loginCodeCorpUnique: false
|
|
||||||
#
|
|
||||||
# # 是否启用验证码登录(手机、邮箱)
|
|
||||||
# loginByValidCode: true
|
|
||||||
#
|
|
||||||
# # 用户类型配置信息(employee员工,member会员,btype往来单位,persion个人,expert专家,...),JSON 格式说明如下:
|
|
||||||
# # {"用户类型":{"beanName":"Service或Dao的Bean名称","loginView":"登录页面视图","indexView":"主框架页面视图,支持 redirect: 前缀"}}
|
|
||||||
# userTypeMap: >
|
|
||||||
# {
|
|
||||||
# employee: {beanName: "employeeService", loginView: "", indexView: "modules/sys/sysIndex"},
|
|
||||||
# member: {beanName: "memberService", loginView: "", indexView: "modules/sys/sysIndexMember"},
|
|
||||||
# btype: {beanName: "btypeInfoService", loginView: "", indexView: "modules/sys/sysIndexBtype"},
|
|
||||||
# expert: {beanName: "expertService", loginView: "", indexView: "modules/sys/sysIndexExpert"}
|
|
||||||
# }
|
|
||||||
#
|
|
||||||
# # 数据权限设置参数,可新增自定义数据权限,moduleCode: 针对模块, ctrlPermi: 权限类型, 0全部 1拥有权限 2管理权限
|
|
||||||
# dataScopes: >
|
|
||||||
# [{
|
|
||||||
# moduleCode: "core",
|
|
||||||
# ctrlPermi: "0",
|
|
||||||
# ctrlName: "机构权限",
|
|
||||||
# ctrlName_en: "Office",
|
|
||||||
# ctrlType: "Office",
|
|
||||||
# ctrlDataUrl: "/sys/office/treeData",
|
|
||||||
# chkboxType: {"Y":"ps","N":"ps"},
|
|
||||||
# expandLevel: 1,
|
|
||||||
# remarks: ""
|
|
||||||
# },{
|
|
||||||
# moduleCode: "core",
|
|
||||||
# ctrlName: "公司权限",
|
|
||||||
# ctrlName_en: "Company",
|
|
||||||
# ctrlType: "Company",
|
|
||||||
# ctrlPermi: "0",
|
|
||||||
# ctrlDataUrl: "/sys/company/treeData",
|
|
||||||
# chkboxType: {"Y":"ps","N":"ps"},
|
|
||||||
# expandLevel: 1,
|
|
||||||
# remarks: ""
|
|
||||||
# },{
|
|
||||||
# moduleCode: "core",
|
|
||||||
# ctrlName: "角色权限",
|
|
||||||
# ctrlName_en: "Role",
|
|
||||||
# ctrlType: "Role",
|
|
||||||
# ctrlPermi: "2",
|
|
||||||
# ctrlDataUrl: "/sys/role/treeData",
|
|
||||||
# chkboxType: {"Y":"ps","N":"ps"},
|
|
||||||
# expandLevel: 1,
|
|
||||||
# remarks: ""
|
|
||||||
# }]
|
|
||||||
#
|
|
||||||
# # 数据权限调试模式(会输出一些日志)
|
|
||||||
# dataScopeDebug: false
|
|
||||||
#
|
|
||||||
# # 数据权限使用 API 方式实现(适应 Cloud 环境,基础用户表与业务数据表跨库的情况)
|
|
||||||
# # 开启后设置 ctrlDataAttrName 加 AndChildren 后缀,ctrlDataParentCodesAttrName 清空
|
|
||||||
# # 以方便读取树结构数据权限的表时包含子节点,举例如下:
|
|
||||||
# # ctrlDataAttrName: "officeCodesAndChildren", ctrlDataParentCodesAttrName: ""
|
|
||||||
# dataScopeApiMode: false
|
|
||||||
#
|
|
||||||
# # v5.10.1 开始默认关闭 JOIN 模式的数据权限,如有需要可打开此参数
|
|
||||||
# dataScopeJoinMode: false
|
|
||||||
#
|
|
||||||
# # 菜单数据权限,是否启用自定义 SQL 执行权限 v5.10.1
|
|
||||||
# dataScopeRuleSql: false
|
|
||||||
|
|
||||||
# 角色管理
|
|
||||||
#role:
|
|
||||||
# # 扩展数据权限定义:3:本部门;4:本公司;5:本部门和本公司
|
|
||||||
# extendDataScopes: >
|
|
||||||
# {
|
|
||||||
# 3: {
|
|
||||||
# Office: {
|
|
||||||
# #控制类型的类名 : "用来获取控制表名和主键字段名,如果为 NONE,则代表是不控制该类型权限",
|
|
||||||
# ctrlTypeClass: "com.jeesite.modules.sys.entity.Office",
|
|
||||||
# #控制数据的类名: "指定一个静态类名,方便 ctrlDataAttrName 得到权限数据,如:当前机构编码、当前公司编码、当前行业编码等",
|
|
||||||
# ctrlDataClass: "com.jeesite.modules.sys.utils.EmpUtils",
|
|
||||||
# #控制数据的类名下的属性名 : "可看做 ctrlDataClass 下的 get 方法,如:EmpUtils.getOfficeCodes(),支持返回字符串或字符串数组类型",
|
|
||||||
# ctrlDataAttrName: "officeCodes",
|
|
||||||
# #控制数据的所有上级编码 : "用于控制数据为树表的情况,为数组时,必须与 ctrlDataAttrName 返回的长度相同,不是树表设置为空",
|
|
||||||
# ctrlDataParentCodesAttrName: "officeParentCodess"
|
|
||||||
# },
|
|
||||||
# Company: {
|
|
||||||
# ctrlTypeClass: "NONE"
|
|
||||||
# }
|
|
||||||
# },
|
|
||||||
# 4: {
|
|
||||||
# Office: {
|
|
||||||
# ctrlTypeClass: "NONE"
|
|
||||||
# },
|
|
||||||
# Company: {
|
|
||||||
# ctrlTypeClass: "com.jeesite.modules.sys.entity.Company",
|
|
||||||
# ctrlDataClass: "com.jeesite.modules.sys.utils.EmpUtils",
|
|
||||||
# ctrlDataAttrName: "companyCodes",
|
|
||||||
# ctrlDataParentCodesAttrName: "companyParentCodess"
|
|
||||||
# }
|
|
||||||
# },
|
|
||||||
# 5: {
|
|
||||||
# Office: {
|
|
||||||
# ctrlTypeClass: "com.jeesite.modules.sys.entity.Office",
|
|
||||||
# ctrlDataClass: "com.jeesite.modules.sys.utils.EmpUtils",
|
|
||||||
# ctrlDataAttrName: "officeCodes",
|
|
||||||
# ctrlDataParentCodesAttrName: "officeParentCodess"
|
|
||||||
# },
|
|
||||||
# Company: {
|
|
||||||
# ctrlTypeClass: "com.jeesite.modules.sys.entity.Company",
|
|
||||||
# ctrlDataClass: "com.jeesite.modules.sys.utils.EmpUtils",
|
|
||||||
# ctrlDataAttrName: "companyCodes",
|
|
||||||
# ctrlDataParentCodesAttrName: "companyParentCodess"
|
|
||||||
# }
|
|
||||||
# }
|
|
||||||
# }
|
|
||||||
|
|
||||||
# 菜单管理
|
|
||||||
#menu:
|
|
||||||
# # 根据模块状态去更新相连的菜单状态
|
|
||||||
# updateStatusByModuleStatus: false
|
|
||||||
|
|
||||||
# 国际化管理(专业版)
|
# 国际化管理(专业版)
|
||||||
lang:
|
lang:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|||||||
Reference in New Issue
Block a user