我收到了错误消息Could not find Janino library on the class path. Skipping conditional processing.我应该在类路径中包含什么来修复这个问题(库和版本)?
发布于 2013-04-10 03:18:03
用于条件日志记录的登录requires the Janino library。如果您不使用配置文件中的结构,则不需要它。
如果使用的是条件句,则需要添加Janino依赖项。您可以将以下内容添加到pom.xml文件中以获取依赖项:
<!-- The org.codehaus.janino:commons-compiler:2.6.1 dependency -->
<!-- will be automatically pulled in by Maven's transitivity rules -->
<dependency>
<groupId>org.codehaus.janino</groupId>
<artifactId>janino</artifactId>
<version>2.6.1</version>
</dependency>我相信这个问题是this one的翻版。
https://stackoverflow.com/questions/11409571
复制相似问题