Drools Compiler showing Rule already defined error starting with 7.8.0.Final
We have been using Drools for more than 10 years starting with 3.0.6 and currently at 7.3.0.Final.
We have one Maven module with a kmodule containing about 300 different kieSessions in different packages.
Up until 7.7.0.Final our rules module compiles fine, i.e. a "mvn clean package" generates the Drools jar without any issues.
When I upgrade the Drools version in the POM to 7.8.0.Final however, I receive many errors about Rules being already defined.
We do have many rules files containing the same rules names but they are all in different packages and thus in different kieSessions. And until 7.7.0.Final this worked fine.
I could't find any hint in the release notes for 7.8.0.Final that describes why no the compiler is starting to complain about duplicate Rule names.
Also, using the latest version 7.14.0.Final shows the same errors:
[ERROR] Failed to execute goal org.kie:kie-maven-plugin:7.8.0.Final:build (default-build) on project myproject: Execution default-build of goal org.kie:kie-maven-plugin:7.8.0.Final:build failed: Unable to get KieModule, Errors Existed: Error Messages:
[ERROR] Message [id=1, kieBase=defaultKieBase, level=ERROR, path=mypath/my-rules-file.drl, line=23, column=0
[ERROR] text=Duplicate rule name: MyRuleName]
What looks strange in this error message is the defaultKieBase.
The kmodule definition for this session looks like this:
<kbase name="my-rules-base"
packages="my.package">
<ksession name="my-rules-session" type="stateless"/>
</kbase>
drools
add a comment |
We have been using Drools for more than 10 years starting with 3.0.6 and currently at 7.3.0.Final.
We have one Maven module with a kmodule containing about 300 different kieSessions in different packages.
Up until 7.7.0.Final our rules module compiles fine, i.e. a "mvn clean package" generates the Drools jar without any issues.
When I upgrade the Drools version in the POM to 7.8.0.Final however, I receive many errors about Rules being already defined.
We do have many rules files containing the same rules names but they are all in different packages and thus in different kieSessions. And until 7.7.0.Final this worked fine.
I could't find any hint in the release notes for 7.8.0.Final that describes why no the compiler is starting to complain about duplicate Rule names.
Also, using the latest version 7.14.0.Final shows the same errors:
[ERROR] Failed to execute goal org.kie:kie-maven-plugin:7.8.0.Final:build (default-build) on project myproject: Execution default-build of goal org.kie:kie-maven-plugin:7.8.0.Final:build failed: Unable to get KieModule, Errors Existed: Error Messages:
[ERROR] Message [id=1, kieBase=defaultKieBase, level=ERROR, path=mypath/my-rules-file.drl, line=23, column=0
[ERROR] text=Duplicate rule name: MyRuleName]
What looks strange in this error message is the defaultKieBase.
The kmodule definition for this session looks like this:
<kbase name="my-rules-base"
packages="my.package">
<ksession name="my-rules-session" type="stateless"/>
</kbase>
drools
It seems that starting with Drools version 7.8.0.Final the package name inside the drl Files becomes relevant. Before 7.8.0.Final it didn't matter if you had a package name at all or if you had duplicate package names although the files resided in different directories and kieSessions.
– phivo
Nov 21 '18 at 11:25
add a comment |
We have been using Drools for more than 10 years starting with 3.0.6 and currently at 7.3.0.Final.
We have one Maven module with a kmodule containing about 300 different kieSessions in different packages.
Up until 7.7.0.Final our rules module compiles fine, i.e. a "mvn clean package" generates the Drools jar without any issues.
When I upgrade the Drools version in the POM to 7.8.0.Final however, I receive many errors about Rules being already defined.
We do have many rules files containing the same rules names but they are all in different packages and thus in different kieSessions. And until 7.7.0.Final this worked fine.
I could't find any hint in the release notes for 7.8.0.Final that describes why no the compiler is starting to complain about duplicate Rule names.
Also, using the latest version 7.14.0.Final shows the same errors:
[ERROR] Failed to execute goal org.kie:kie-maven-plugin:7.8.0.Final:build (default-build) on project myproject: Execution default-build of goal org.kie:kie-maven-plugin:7.8.0.Final:build failed: Unable to get KieModule, Errors Existed: Error Messages:
[ERROR] Message [id=1, kieBase=defaultKieBase, level=ERROR, path=mypath/my-rules-file.drl, line=23, column=0
[ERROR] text=Duplicate rule name: MyRuleName]
What looks strange in this error message is the defaultKieBase.
The kmodule definition for this session looks like this:
<kbase name="my-rules-base"
packages="my.package">
<ksession name="my-rules-session" type="stateless"/>
</kbase>
drools
We have been using Drools for more than 10 years starting with 3.0.6 and currently at 7.3.0.Final.
We have one Maven module with a kmodule containing about 300 different kieSessions in different packages.
Up until 7.7.0.Final our rules module compiles fine, i.e. a "mvn clean package" generates the Drools jar without any issues.
When I upgrade the Drools version in the POM to 7.8.0.Final however, I receive many errors about Rules being already defined.
We do have many rules files containing the same rules names but they are all in different packages and thus in different kieSessions. And until 7.7.0.Final this worked fine.
I could't find any hint in the release notes for 7.8.0.Final that describes why no the compiler is starting to complain about duplicate Rule names.
Also, using the latest version 7.14.0.Final shows the same errors:
[ERROR] Failed to execute goal org.kie:kie-maven-plugin:7.8.0.Final:build (default-build) on project myproject: Execution default-build of goal org.kie:kie-maven-plugin:7.8.0.Final:build failed: Unable to get KieModule, Errors Existed: Error Messages:
[ERROR] Message [id=1, kieBase=defaultKieBase, level=ERROR, path=mypath/my-rules-file.drl, line=23, column=0
[ERROR] text=Duplicate rule name: MyRuleName]
What looks strange in this error message is the defaultKieBase.
The kmodule definition for this session looks like this:
<kbase name="my-rules-base"
packages="my.package">
<ksession name="my-rules-session" type="stateless"/>
</kbase>
drools
drools
asked Nov 21 '18 at 10:13
phivophivo
76113
76113
It seems that starting with Drools version 7.8.0.Final the package name inside the drl Files becomes relevant. Before 7.8.0.Final it didn't matter if you had a package name at all or if you had duplicate package names although the files resided in different directories and kieSessions.
– phivo
Nov 21 '18 at 11:25
add a comment |
It seems that starting with Drools version 7.8.0.Final the package name inside the drl Files becomes relevant. Before 7.8.0.Final it didn't matter if you had a package name at all or if you had duplicate package names although the files resided in different directories and kieSessions.
– phivo
Nov 21 '18 at 11:25
It seems that starting with Drools version 7.8.0.Final the package name inside the drl Files becomes relevant. Before 7.8.0.Final it didn't matter if you had a package name at all or if you had duplicate package names although the files resided in different directories and kieSessions.
– phivo
Nov 21 '18 at 11:25
It seems that starting with Drools version 7.8.0.Final the package name inside the drl Files becomes relevant. Before 7.8.0.Final it didn't matter if you had a package name at all or if you had duplicate package names although the files resided in different directories and kieSessions.
– phivo
Nov 21 '18 at 11:25
add a comment |
1 Answer
1
active
oldest
votes
OK, it seems that starting with 7.8.0.Final the Drools compiler does consider the package name inside the DRL Files so you need to make sure that you use correct package names.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53409731%2fdrools-compiler-showing-rule-already-defined-error-starting-with-7-8-0-final%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
OK, it seems that starting with 7.8.0.Final the Drools compiler does consider the package name inside the DRL Files so you need to make sure that you use correct package names.
add a comment |
OK, it seems that starting with 7.8.0.Final the Drools compiler does consider the package name inside the DRL Files so you need to make sure that you use correct package names.
add a comment |
OK, it seems that starting with 7.8.0.Final the Drools compiler does consider the package name inside the DRL Files so you need to make sure that you use correct package names.
OK, it seems that starting with 7.8.0.Final the Drools compiler does consider the package name inside the DRL Files so you need to make sure that you use correct package names.
answered Nov 21 '18 at 11:38
phivophivo
76113
76113
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53409731%2fdrools-compiler-showing-rule-already-defined-error-starting-with-7-8-0-final%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
It seems that starting with Drools version 7.8.0.Final the package name inside the drl Files becomes relevant. Before 7.8.0.Final it didn't matter if you had a package name at all or if you had duplicate package names although the files resided in different directories and kieSessions.
– phivo
Nov 21 '18 at 11:25