Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 log4j 从 drl 文件执行日志记录。我为 drl 文件中的每个规则创建一个单独的记录器实例。有没有办法创建一个单一的记录器实例,可以在 drl 文件中定义的所有规则中使用。
通过在您的 *.drl 中创建一个全局变量:
global Logger logger;
在 *.java 中做:
kSession.setGlobal("logger", myLogger);