第 57 章 在 Oracle WebLogic Server 中配置嵌入式决策引擎
决策引擎是一个轻量级的规则引擎,可让您执行决策和业务流程。决策引擎可以是红帽决策管理器应用程序的一部分,或者可以通过 OpenShift、Kubernetes 和 Docker 作为服务来部署。您可以通过 API 或一组上下文和依赖注入(CDI)服务在红帽决策管理器应用程序中嵌入决策引擎。
如果要将嵌入式引擎与 Red Hat Process Automation Manager 应用程序搭配使用,则必须通过将 Red Hat Business Automation bill of material (BOM)文件添加到项目的 pom.xml 文件中,为项目添加 Maven 依赖项。Red Hat Business Automation BOM 适用于 Red Hat Decision Manager 和 Red Hat Process Automation Manager。有关 Red Hat Business Automation BOM 的更多信息,请参阅 Red Hat Process Automation Manager 和 Maven 库版本之间的映射是什么?
流程
在
pom.xml文件中声明 Red Hat Business Automation BOM:<dependencyManagement> <dependencies> <dependency> <groupId>com.redhat.ba</groupId> <artifactId>ba-platform-bom</artifactId> <version>7.13.2.redhat-00002</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- Your dependencies --> </dependencies>在 <dependencies> 标签中声明项目
所需的依赖项。将产品 BOM 导入到项目中后,定义了面向用户的依赖项的版本,因此您无需指定这些 <dependency> 元素的<version> 子元素。但是,您必须使用 <dependency> 元素来声明您要在项目中使用的依赖项。对于基本的 Red Hat Decision Manager 项目,根据您要使用的功能,声明以下依赖项:
嵌入式决策引擎依赖项
<dependency> <groupId>org.drools</groupId> <artifactId>drools-compiler</artifactId> </dependency> <!-- Dependency for persistence support. --> <dependency> <groupId>org.drools</groupId> <artifactId>drools-persistence-jpa</artifactId> </dependency> <!-- Dependencies for decision tables, templates, and scorecards. For other assets, declare org.drools:business-central-models-* dependencies. --> <dependency> <groupId>org.drools</groupId> <artifactId>drools-decisiontables</artifactId> </dependency> <dependency> <groupId>org.drools</groupId> <artifactId>drools-templates</artifactId> </dependency> <dependency> <groupId>org.drools</groupId> <artifactId>drools-scorecards</artifactId> </dependency> <!-- Dependency for loading KJARs from a Maven repository using KieScanner. --> <dependency> <groupId>org.kie</groupId> <artifactId>kie-ci</artifactId> </dependency>要使用 KIE 服务器,声明以下依赖项:
客户端应用程序 KIE 服务器依赖项
<dependency> <groupId>org.kie.server</groupId> <artifactId>kie-server-client</artifactId> </dependency>要为 Red Hat Process Automation Manager 创建远程客户端,请声明以下依赖项:
客户端依赖项
<dependency> <groupId>org.uberfire</groupId> <artifactId>uberfire-rest-client</artifactId> </dependency>在创建包含资产的 JAR 文件(如规则和进程定义)时,请将 Maven 项目的打包类型指定为
kjar,并使用org.kie:kie-maven-plugin来处理位于 <project> 元素下的kjar打包类型。在以下示例中,${kie.version}是 Red Hat Process Automation Manager 和 Maven 库版本之间的映射中列出的 Maven 库版本?<packaging>kjar</packaging> <build> <plugins> <plugin> <groupId>org.kie</groupId> <artifactId>kie-maven-plugin</artifactId> <version>${kie.version}</version> <extensions>true</extensions> </plugin> </plugins> </build>
如果您在项目中使用具有持久性支持的决策引擎,您必须在
pom.xml文件的dependencyManagement部分中声明以下休眠依赖关系,方法是从 Red Hat Business Automation BOM 文件中复制version.org.hibernate-4ee7属性:决策引擎中的 Hibernate 依赖项具有持久性
<!-- hibernate dependencies --> <dependencyManagement> <dependencies> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-entitymanager</artifactId> <version>${version.org.hibernate-4ee7}</version> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <version>${version.org.hibernate-4ee7}</version> </dependency> </dependencies> </dependencyManagement>