BPMN用户指南 (3) Flowable API
Flowable 6.6.0 BPMN用户指南 - (3) The Flowable API
月满闲庭
资深IT工作者
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Flowable 6.6.0 BPMN用户指南 - 3 The Flowable API
《Flowable 6.6.0 BPMN用户指南》3 The Flowable API3.1 流程引擎API和服务3.2 异常策略3.3 查询API(Query API)3.4 变量(Variables)3.5 瞬态变量(Transient variables)3.6 表达式(Expressions)3.7 表达式函数(Expression functions)3.8 单元测试3.9 单元测试调试3.10 Web应用程序中的流程引擎...原创 2020-12-30 06:45:06 · 2357 阅读 · 0 评论 -
Flowable 6.6.0 BPMN用户指南 - (3) The Flowable API - 3.8 单元测试
3.8 单元测试Business processes are an integral part of software projects and they should be tested in the same way normal application logic is tested: with unit tests. Since Flowable is an embeddable Java engine, writing unit tests for business processes is a原创 2020-12-30 06:43:44 · 556 阅读 · 0 评论 -
Flowable 6.6.0 BPMN用户指南 - (3) The Flowable API - 3.9 单元测试调试
3.9 单元测试调试When using the in-memory H2 database for unit tests, the following instructions allow you to easily inspect the data in the Flowable database during a debugging session. The screenshots here are taken in Eclipse, but the mechanism should be simi原创 2020-12-30 06:43:26 · 423 阅读 · 0 评论 -
Flowable 6.6.0 BPMN用户指南 - (3) The Flowable API - 3.10 Web应用程序中的流程引擎
3.10 Web应用程序中的流程引擎The ProcessEngine is a thread-safe class and can easily be shared among multiple threads. In a web application, this means it is possible to create the process engine once when the container boots and shut down the engine when the contai原创 2020-12-30 06:43:06 · 348 阅读 · 0 评论 -
Flowable 6.6.0 BPMN用户指南 - (3) The Flowable API - 3.7 表达式函数(Expression functions)
3.7 表达式函数(Expression functions)[Experimental] Expression functions have been added in version 6.4.0.To make working with process variables easier, a set of out-of-the-box functions is available, under the variables namespace.[实验性]6.4.0版中添加了表达式函数。为了更容易处原创 2020-12-29 07:41:37 · 1921 阅读 · 0 评论 -
Flowable 6.6.0 BPMN用户指南 - (3) The Flowable API - 3.6 表达式(Expressions)
3.6 表达式(Expressions)Flowable uses UEL for expression-resolving. UEL stands for Unified Expression Language and is part of the EE6 specification (see the EE6 specification for detailed information).Expressions can be used in, for example, Java Service tas原创 2020-12-29 07:41:19 · 2283 阅读 · 0 评论 -
Flowable 6.6.0 BPMN用户指南 - (3) The Flowable API - 3.5 瞬态变量(Transient variables)
3.5 瞬态变量(Transient variables)Transient variables are variables that behave like regular variables, but are not persisted. Typically, transient variables are used for advanced use cases. When in doubt, use a regular process variable.The following applies原创 2020-12-29 07:40:56 · 1602 阅读 · 0 评论 -
Flowable 6.6.0 BPMN用户指南 - (3) The Flowable API - 3.4 变量(Variables)
3.4 变量(Variables)Every process instance needs and uses data to execute the steps it’s made up of. In Flowable, this data is called variables, which are stored in the database. Variables can be used in expressions (for example, to select the correct outgoi原创 2020-12-29 07:40:36 · 1639 阅读 · 0 评论 -
Flowable 6.6.0 BPMN用户指南 - (3) The Flowable API - 3.3 查询API(Query API)
3.3 查询API(Query API)There are two ways of querying data from the engine: the query API and native queries. The Query API allows you to program completely typesafe queries with a fluent API. You can add various conditions to your queries (all of which are原创 2020-12-29 07:40:09 · 792 阅读 · 0 评论 -
Flowable 6.6.0 BPMN用户指南 - (3) The Flowable API - 3.2 异常策略
3.2 异常策略The base exception in Flowable is the org.flowable.engine.FlowableException, an unchecked exception. This exception can be thrown at all times by the API, but ‘expected’ exceptions that happen in specific methods are documented in the javadocs. Fo原创 2020-12-29 07:39:47 · 1108 阅读 · 0 评论 -
Flowable 6.6.0 BPMN用户指南 - (3) The Flowable API - 3.1 流程引擎API和服务
3 The Flowable API3.1 流程引擎API和服务The engine API is the most common way of interacting with Flowable. The main starting point is the ProcessEngine, which can be created in several ways as described in the configuration section. From the ProcessEngine, you原创 2020-12-29 07:39:23 · 1493 阅读 · 0 评论
分享