[jboss-jira] [JBoss JIRA] (DROOLS-5544) RuleRuntimeEventListener not containing the rule that triggered it when rules are compiled

Ciprian Chiru (Jira) issues at jboss.org
Wed Jul 29 11:02:01 EDT 2020


Ciprian Chiru created DROOLS-5544:
-------------------------------------

             Summary: RuleRuntimeEventListener not containing the rule that triggered it when rules are compiled
                 Key: DROOLS-5544
                 URL: https://issues.redhat.com/browse/DROOLS-5544
             Project: Drools
          Issue Type: Bug
          Components: executable model
    Affects Versions: 7.31.0.Final
            Reporter: Ciprian Chiru
            Assignee: Luca Molteni


When rules are compiled using _kie-maven-compile_, the event handlers implementing 

_RuleRuntimeEventListener_ no longer have the rule that triggered them set (_ObjectInsertedEvent.getRule()_ is null) . 

 

 
{code:java}
public class MyListener implements RuleFactEventListener {

@Override
public void objectInserted(final ObjectInsertedEvent event) {
 System.out.println(event.getRule()); // Throws exception
}
{code}
 

 

It only happens when the compiler plugin is invoked. If the rules are used as such, the event is properly set.

 



--
This message was sent by Atlassian Jira
(v7.13.8#713008)



More information about the jboss-jira mailing list