服务注入

JBoss 系列七十二:jBPM 6 新功能/特性介绍(API 层面)

我们两清 提交于 2020-03-10 17:34:06
概述 jBPM 6.0 最终版已与上月底发布,与jBPM 5相比有很大变化,本文从API编程的角度去简单说说jBPM 6,本文涉及到内容包括: 2个重要的接口 运行状态管理 jBPM 服务注入 (CDI) 2个重要的接口 jBPM 6最主要的两个接口指的是KieSession (ProcessRuntime)和TaskService。 KieSession 是最常用与引擎交互的接口,一个KieSession允许应用与引擎建立一个iterative conversation,where the state of the session is kept across invocations. The reasoning process may be triggered multiple times for the same set of data. 当应用程序完成使用session,dispose()方法必须被调运,这样是为了free the resources and used memory。 使用KieSession执行企业规则文件的例子: KieServices kieServices = KieServices.Factory.get(); KieContainer kContainer = kieServices.getKieClasspathContainer();