xiangpei
2024-11-30 1d3e23787a7c7c959925361ebba0671e3f36c53a
start/src/main/resources/application-prod.yml
@@ -43,7 +43,7 @@
        druid:
            # 主库数据源
            master:
                url: jdbc:mysql://localhost:3306/ry-vue?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
                url: jdbc:mysql://localhost:3306/project_management?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
                username: root
                password: password
            # 从库数据源
@@ -103,3 +103,19 @@
swagger:
    # 是否开启swagger
    enabled: false
# 工作流 Flowable 配置,flowable完整的配置,参见:@see https://www.flowable.com/open-source/docs/bpmn/ch05a-Spring-Boot/#flowable-application-properties
flowable:
    database-schema-update: false  # 自动更新flowable表结构,第一次连接数据库时可以设置为true
    #  # 关闭各个模块生成表,目前只使用工作流基础表
    idm:  # idm是flowable的身份管理模块:即用户、认证、权限等
        enabled: false
#  cmmn: # cmmn是flowable的案例管理模块,体现在flowable-ui中的:流程建模器、UI,@see https://www.flowable.com/open-source/docs/cmmn/ch06-cmmn
#    enabled: true
#  dmn: # dmn是flowable的决策模型,体现在flowable-ui中的决策表  @see https://www.flowable.com/open-source/docs/dmn/ch06-DMN-Introduction
#    enabled: false
#  app: # app的功能是为flowable在spring中高效运行而提供了很多bean,与flowable本身的内容无关
#    enabled: true
#  check-process-definitions: true