码迷,mamicode.com
首页 > 其他好文 > 详细

Drools使用注意事项

时间:2020-12-21 11:29:14      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:nta   state   custom   ssi   command   set   场景   getc   oid   

使用场景:

public void doCustomer() {
//
People people = new People();
people.setName("哒");
people.setSex(1);
people.setDrlType("people");
//
KieServices kieServices = KieServices.Factory.get();
StatelessKieSession kieSession = kieServices.getKieClasspathContainer().newStatelessKieSession("my-test");
List<Command> commands = new ArrayList<>();
KieCommands kieCommands = kieServices.getCommands();
commands.add(kieCommands.newInsert(people, "input"));

ExecutionResults execute = kieSession.execute(kieCommands.newBatchExecution(commands));

}

问题:

 

Drools使用注意事项

标签:nta   state   custom   ssi   command   set   场景   getc   oid   

原文地址:https://www.cnblogs.com/kobe-lin/p/14141756.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!