我正在使用DroolsCompilerAntTask进行ant构建,并且在构建过程中收到以下错误
rules:
[compiler] Unable to resolve ObjectType 'Result' : [Rule name='Test']
对于我拥有的规则文件
package rules
import com.drools.info.*;
dialect "java"
rule "Test"
when
$r:Result(total == Result.ONE )
then
System.out.println( "Test Complete." );
end
构建.xml
<!-- rule -->
<path id="drools.path" >
<fileset dir="${basedir}/libs">
<include name="*.jar"/>
</fileset>
<pathelement location="${basedir}/build/rules" /> <- this is my path to compiled class files. If I exclude this line I got the above error. If I include this line then I got the (Access is denied) error. Either way is errored out. Are there permanent solution to this?
</path>
<path id="compile.classpath">
</path>
<taskdef name="compiler" classname="org.drools.contrib.DroolsCompilerAntTask" classpathref="drools.path" />
<target name="rules" >
<compiler
binformat="package"
srcdir="${basedir}/src/rules"
tofile="${basedir}/build"
classpathref="compile.classpath" >
<include name="*.drl" />
<include name="*.brl" />
<include name="*.xml" />
<include name="*.dslr" />
</compiler>
</target>
其中 Result 是来自 com.drool.info.Result 的类对象我认为当我编译规则时,我没有添加类文件以及规则可能会导致这种情况?或者有没有办法告诉 Ant 规则编译器与类文件是相关的?如果这是问题所在,我该如何解决它?
编译 .drl 文件在几个方面类似于编译 Java 文件。最重要的是,.drl 中使用的所有类必须与 .drl 位于同一包中,或者必须导入它们。但是,导入仅解析名称空间 - 要获取类的结构,必须提供类的.class文件。编译器怎么知道字段引用的含义?
确保.class文件或包含它们的.jar文件位于类路径中。