LiteFlow LiteFlow
💒Home
📚Documents
💖Donation
🚀Plugin
  • About LiteFlow
  • Update Record
Community
Users
Gitee (opens new window)
Github (opens new window)
  • 简体中文 (opens new window)
  • English (opens new window)
💒Home
📚Documents
💖Donation
🚀Plugin
  • About LiteFlow
  • Update Record
Community
Users
Gitee (opens new window)
Github (opens new window)
  • 简体中文 (opens new window)
  • English (opens new window)
  • 🍤Introduction
  • 🍓Features
  • 🍟Quick Start(Hello world)

    • 🍄Notice
    • 🌿Springboot environment

      • 🧬Dependency
      • ⚙️Config
      • 🛫Execute
    • 🌱Spring environment

      • 🧬Dependency
      • ⚙️Config
      • 🛫Execute
    • 🌵Other environment

      • 🍄Notice
      • 🧬Dependency
      • ⚙️Config
      • 🛫Execute
  • 🍢Configuration item

    • 🍄Notice
    • 🌿Springboot environment
    • 🌱Spring environment
    • 🌵Other environment
  • 🗂Rules file

    • 📔Rules file format
    • 📕Local rule file
    • 📗Zookeeper source
    • 📘SQL database source
    • 📋Nacos source
    • 🗄Etcd source
    • 📙Custom source
  • 🔗General components

    • 📎Common component
    • ✂️Switch component
    • 📌If component
    • 🧬For component
    • ⛓While component
    • 🧿Break component
  • 🧩How to write EL rules

    • 🍄Notice
    • 🌴Serial mode
    • 🎋Parallel mode
    • 🌾Switch mode
    • 🌵If mode
    • 🌳Loop mode
    • 🍁Use sub chain
    • 🍂Use sub variables
    • 💐Complex example
    • 🌻About semicolons
    • 🌰About comments
    • 🐚Component Name Package
  • 🌮Data context

    • 🍄Notice
    • 🌯Definition and use
    • 🪶Pass initialized context
  • 🛩Flow executor

    • 🍄Notice
    • 🎡Executor method
    • 🎢Chain input parameter
    • 🎈LiteflowResponse object
  • 🍋Script component

    • 🍫Choose a script language
    • 🍕Define script component
    • 🌯Define file script
    • 🍣Interact with java
    • 🍘Dynamic refresh script
  • 🍇Declarative component

    • 🥭What is a declarative component
    • 🧅Class level declaration
    • 🥥Method level declaration
  • 🎲Dynamic rules

    • 🍄Notice
    • 🎯How to build
  • 🎨Advanced features

    • 🍒Pre & Finally components
    • 🥠Substitute component
    • 🍉Component Parameters
    • 🍑Component alias
    • 🍍Component tag
    • 🥝Component event
    • 🥑Implicit chain
    • 🍕Private delivery
    • 🍣Component retry
    • 🍖Smooth hot refresh
    • 🍪Component aspect
    • 🍡Step information
    • 🧊Exceptions
    • 🧇Printing details
    • 🧁Custom request id
    • 🌭Multiple type rules
    • 🥗Asynchronous thread pool
    • 🍿Custom component executor
    • 🍥Simple monitor
    • 🧉DTD in Xml
  • ⛱Test cases and demo

    • 🪁Test cases
    • 🪀Demo
  • 🪂Performance
  • v2.9.X文档
  • 🍢Configuration item
铂赛东
2022-06-06

🌱Spring environment

<bean id="liteflowConfig" class="com.yomahub.liteflow.property.LiteflowConfig">
    <property name="ruleSource" value="config/flow.el.xml"/>
    <!-- ***********The following configs are optional*********** -->
    <!-- Whether liteflow is enabled, the default is true -->
    <property name="enable" value="true"/> 
    <!-- Whether the banner of liteflow is enabled, the default is true -->
    <property name="printBanner" value="true"/> 
    <!-- The node of zkNode, only works when zk is used as the configuration source -->
    <property name="zkNode" value="/lite-flow/flow.xml"/> 
    <!-- Maximum number of slots for context, default is 1024 -->
    <property name="slotSize" value="1024"/> 
    <!-- The number of threads of the execute2Future of FlowExecutor, the default is 64 -->
    <property name="mainExecutorWorks" value="64"/> 
    <!-- FlowExecutor's execute2Future's custom thread pool Builder, LiteFlow provides the default Builder -->
    <property name="mainExecutorClass" value="com.yomahub.liteflow.thread.LiteFlowDefaultMainExecutorBuilder"/>
    <!-- Custom request ID generation class, LiteFlow provides a default generation class -->
    <property name="requestIdGeneratorClass" value="com.yomahub.liteflow.flow.id.DefaultRequestIdGenerator"/>
    <!-- Thread pool Builder for parallel nodes, LiteFlow provides default Builder -->
    <property name="threadExecutorClass" value="com.yomahub.liteflow.thread.LiteFlowDefaultWhenExecutorBuilder"/> 
    <!-- The longest waiting time in seconds for asynchronous threads (only for when), the default value is 15 -->
    <property name="whenMaxWaitSeconds" value="15"/>
    <!-- The maximum number of threads in the global asynchronous thread pool of the when node, the default is 16 -->
    <property name="whenMaxWorkers" value="16"/> 
    <!-- When node global asynchronous thread pool waiting queue number, the default is 512 -->
    <property name="whenQueueLimit" value="512"/>
    <!-- Whether to parse the rules at startup, the default is true -->
    <property name="parseOnStart" value="true"/>
    <!-- Global retries, default is 0 -->
    <property name="retryCount" value="0"/>
    <!-- Whether to support mixing of different types of loading methods, the default is false -->
    <property name="supportMultipleType" value="false"/>
    <!-- Global default node executor -->
    <property name="nodeExecutorClass" value="com.yomahub.liteflow.flow.executor.DefaultNodeExecutor"/>
    <!-- Whether to print the log during execution, the default is true -->
    <property name="printExecutionLog" value="true"/>
    <!-- Whether monitoring is enabled, it is disabled by default -->
    <property name="enableLog" value="false"/>
    <!-- Monitoring queue storage size, the default value is 200 -->
    <property name="queueLimit" value="200"/>
    <!-- Monitor how many milliseconds to delay execution at the beginning, the default value is 300000 milliseconds, which is 5 minutes -->
    <property name="period" value="300000"/>
    <!-- how many milliseconds the monitoring log print. The default value is 300000 milliseconds, which is 5 minutes. -->
    <property name="delay" value="300000"/> 
</bean>

notice

rule-source is required whenever rules are used.

But if you construct rules dynamically with code, then the rule-source configuration is automatically invalid. Because code constructs use code to assemble rules, no rules files are required. For details, please refer to Dynamic Rules.

Help us improve this document (opens new window)
last update: 2022/10/13, 00:02:27
🌿Springboot environment
🌵Other environment

← 🌿Springboot environment 🌵Other environment→

Theme by Vdoing | Copyright © 2020-2022 铂赛东 | MIT License
  • 跟随系统
  • 浅色模式
  • 深色模式
  • 阅读模式