In DROOLS, if we are looking to see if the value "foo" is in the list {fu, fa, fe, fi, fo, foo, fum, doodle, dee}, when MVEL parses that into a DRL we get something like this:
if("foo" == "fu" || "foo" == "fa" || "foo" == "fe" || ...)
Which is fine as long as the list is relatively small, but we need to see if a provided zipCode is in a list of zipCodes, so what we need it to create is something more like this:
Set zipCodes = getAllZipCodesInNHNYandHalfOfCA() [So you know there are approximately 40k zipCodes in the US]
if(zipCodes.contains(customer.getZipCode()){ ... rule evaluates to true }
I'm looking for how to teach DROOLS to do this comparison the way we need it to rather than the way it is for us now.
Thoughts, comments, suggestions?
Thanks,
Jason
You can call a Java method from your Drools rule. So you write a method
And then in Drools rule when part you can call this function: