本文整理汇总了Java中org.drools.agent.KnowledgeAgentFactory.newKnowledgeAgentConfiguration方法的典型用法代码示例。如果您正苦于以下问题:Java KnowledgeAgentFactory.newKnowledgeAgentConfiguration方法的具体用法?Java KnowledgeAgentFactory.newKnowledgeAgentConfiguration怎么用?Java KnowledgeAgentFactory.newKnowledgeAgentConfiguration使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.drools.agent.KnowledgeAgentFactory
的用法示例。
在下文中一共展示了KnowledgeAgentFactory.newKnowledgeAgentConfiguration方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: checkConfiguration
import org.drools.agent.KnowledgeAgentFactory; //导入方法依赖的package包/类
/**
* <p>
* Check if all fields are initialized properly.
* </p>
* <p>
* In this class, this method will check if the servicePeriodSplitDates contains null.
* </p>
*
* @throws OPMConfigurationException if any needed field is not
* initialized properly.
* @since 1.1 OPM - Rules Engine - Scenarios Conversion 2 - Deduction Update Assembly
*/
@Override
@PostConstruct
public void checkConfiguration() {
super.checkConfiguration();
if (this.entityManager == null) {
throw new OPMConfigurationException("entityManager cannot be null.");
}
if (servicePeriodSplitDates != null) {
for (Date date : servicePeriodSplitDates) {
if (date == null) {
throw new OPMConfigurationException("Items in servicePeriodSplitDates list cannot be null.");
}
}
}
if (this.deductionTableTemplate == null) {
throw new OPMConfigurationException("deductionTableTemplate cannot be null.");
}
try {
// Generate deduction table
this.generateDeductionTable();
// Initialize knowledge agent
KnowledgeAgentConfiguration config = KnowledgeAgentFactory.newKnowledgeAgentConfiguration();
// We have to set the newInstance property to false so that the knowledge base changes can be reflected
config.setProperty("drools.agent.newInstance", "false");
KnowledgeAgent knowledgeAgent = KnowledgeAgentFactory.newKnowledgeAgent("deductionKnowledgeAgent", config);
// Substitute the classpath resource location with the file system resource location
String changeSet = ServiceHelper.inputStreamToString(
ResourceFactory.newClassPathResource("deduction-change-set.xml").getInputStream());
changeSet = changeSet.replace("classpath:rules/deduction_table.xls",
"file:" + this.deductionTableTemplate.getDecisionTableFile());
knowledgeAgent.applyChangeSet(ResourceFactory.newByteArrayResource(changeSet.getBytes("utf-8")));
this.setKnowledgeAgent(knowledgeAgent);
} catch (IOException e) {
throw new OPMConfigurationException("Failed to initialize KnowledgeAgent.");
}
}
开发者ID:NASA-Tournament-Lab,项目名称:CoECI-OPM-Service-Credit-Redeposit-Deposit-Application,代码行数:51,代码来源:DeductionCalculationRuleServiceImpl.java
示例2: checkConfiguration
import org.drools.agent.KnowledgeAgentFactory; //导入方法依赖的package包/类
/**
* <p>
* Check if all fields are initialized properly.
* </p>
*
* @throws OPMConfigurationException if any needed field is not
* initialized properly.
*/
@Override
@PostConstruct
public void checkConfiguration() {
super.checkConfiguration();
if (this.entityManager == null) {
throw new OPMConfigurationException("entityManager cannot be null.");
}
if (this.csrsInterestTemplate == null) {
throw new OPMConfigurationException("csrsInterestTemplate cannot be null.");
}
if (this.csrsPeaceCorpsInterestTemplate == null) {
throw new OPMConfigurationException("csrsPeaceCorpsInterestTemplate cannot be null.");
}
if (this.csrsRedepositInterestTemplate == null) {
throw new OPMConfigurationException("csrsRedepositInterestTemplate cannot be null.");
}
if (this.fersInterestTemplate == null) {
throw new OPMConfigurationException("fersInterestTemplate cannot be null.");
}
if (this.fersPeaceCorpsInterestTemplate == null) {
throw new OPMConfigurationException("fersPeaceCorpsInterestTemplate cannot be null.");
}
if (this.fersRedepositInterestTemplate == null) {
throw new OPMConfigurationException("fersRedepositInterestTemplate cannot be null.");
}
try {
// Generate interest tables
this.generateInterestTables();
// Initialize knowledge agent
KnowledgeAgentConfiguration config = KnowledgeAgentFactory.newKnowledgeAgentConfiguration();
// We have to set the newInstance property to false so that the knowledge base changes can be reflected
config.setProperty("drools.agent.newInstance", "false");
KnowledgeAgent knowledgeAgent = KnowledgeAgentFactory.newKnowledgeAgent("interestKnowledgeAgent", config);
// Substitute the classpath resource location with the file system resource location
String changeSet = ServiceHelper.inputStreamToString(
ResourceFactory.newClassPathResource("interest-change-set.xml").getInputStream());
changeSet = changeSet.replace("classpath:rules/csrs_interest.xls",
"file:" + this.csrsInterestTemplate.getDecisionTableFile());
changeSet = changeSet.replace("classpath:rules/csrs_peacecorps_interest.xls",
"file:" + this.csrsPeaceCorpsInterestTemplate.getDecisionTableFile());
changeSet = changeSet.replace("classpath:rules/csrs_redeposit_interest.xls",
"file:" + this.csrsRedepositInterestTemplate.getDecisionTableFile());
changeSet = changeSet.replace("classpath:rules/fers_interest.xls",
"file:" + this.fersInterestTemplate.getDecisionTableFile());
changeSet = changeSet.replace("classpath:rules/fers_peacecorps_interest.xls",
"file:" + this.fersPeaceCorpsInterestTemplate.getDecisionTableFile());
changeSet = changeSet.replace("classpath:rules/fers_redeposit_interest.xls",
"file:" + this.fersRedepositInterestTemplate.getDecisionTableFile());
knowledgeAgent.applyChangeSet(ResourceFactory.newByteArrayResource(changeSet.getBytes("utf-8")));
this.setKnowledgeAgent(knowledgeAgent);
} catch (IOException e) {
throw new OPMConfigurationException("Failed to initialize KnowledgeAgent.");
}
}
开发者ID:NASA-Tournament-Lab,项目名称:CoECI-OPM-Service-Credit-Redeposit-Deposit-Application,代码行数:65,代码来源:InterestCalculationRuleServiceImpl.java