我收到错误消息Could not find Janino library on the class path. Skipping conditional processing.我应该在类路径中包括什么来解决此问题(lib和版本)?

最佳答案

重新登录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的重复。

关于logback - 回传:“在类路径上找不到Janino库”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11409571/

10-12 01:04