更新VSCode配置,启用Maven支持,设置Java 17环境,调整MybatisPlusSaasConfig以开启系统租户控制并添加新租户表。更新pom.xml以包含新模块jeecg-module-xslmes,优化Vue3环境配置以统一API路径,增强代理设置以支持完整的后端路径。修复useForm钩子中的字段重置逻辑,改进axios配置以处理相对URL的上下文路径问题。
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
liteflow:
|
||||
print-banner: false
|
||||
parse-mode: PARSE_ONE_ON_FIRST_EXEC
|
||||
#异步线程最长的等待时间秒(只用于when),默认值为15
|
||||
# when-max-wait-seconds: 180
|
||||
rule-source-ext-data-map:
|
||||
# url: jdbc:mysql://localhost:3306/poseidon
|
||||
# driverClassName: com.mysql.cj.jdbc.Driver
|
||||
# username: root
|
||||
# password: 123456
|
||||
applicationName: jeecg
|
||||
#是否开启SQL日志
|
||||
sqlLogEnabled: true
|
||||
#是否开启SQL数据轮询自动刷新机制 默认不开启
|
||||
# pollingEnabled: false
|
||||
#SQL数据轮询时间间隔(s) 默认为60s
|
||||
# pollingIntervalSeconds: 60
|
||||
#规则配置后首次轮询的起始时间(s) 默认为60s
|
||||
# pollingStartSeconds: 60
|
||||
#以下是chain表的配置,这个一定得有
|
||||
#编排规则表的表名
|
||||
chainTableName: airag_flow
|
||||
#编排规则表中应用名称存储字段名
|
||||
chainApplicationNameField: application_name
|
||||
#规则名称存储的字段名
|
||||
chainNameField: id
|
||||
#EL表达式的字段(只存EL)
|
||||
elDataField: chain
|
||||
#以下是决策路由字段的配置,如果你没用到决策路由,可以不配置
|
||||
# routeField: route
|
||||
# namespaceField: namespace
|
||||
# #是否启用这条规则
|
||||
# chainEnableField: enable
|
||||
# #规则表自定义过滤SQL
|
||||
chainCustomSql: select id, application_name, chain from airag_flow where status = 'enable' and chain is not null
|
||||
#以下是script表的配置,如果你没使用到脚本,下面可以不配置
|
||||
# scriptTableName: script
|
||||
# scriptApplicationNameField: application_name
|
||||
# scriptIdField: script_id
|
||||
# scriptNameField: script_name
|
||||
# scriptDataField: script_data
|
||||
# scriptTypeField: script_type
|
||||
# scriptLanguageField: script_language
|
||||
# #是否启用这条脚本
|
||||
# scriptEnableField: enable
|
||||
# #脚本表自定义过滤SQL
|
||||
# scriptCustomSql: 这里设置自定义脚本表SQL
|
||||
Reference in New Issue
Block a user