背景:我正在开发一个应用程序,它根据一组drools规则将输入对象转换为两个输出对象之一。输出对象直到运行时才为人所知,它是在要执行的第一个规则中创建的。这是创建输出对象的规则和示例转换规则:rule"Initialization"dialect"java"salience1000no-looptruewhent:Trade()thenif(t.getTran().getInsType().equalsIgnoreCase("EEO")||t.getTran().getInsType().equalsIgnoreCase("EEF")){insert(newOption());}els