오류 메시지가 나타납니다 Could not find Janino library on the class path. Skipping conditional processing.
이 (lib 및 버전) 문제를 해결하려면 classpath에서 어떻게해야합니까?Logback : "클래스 경로에서 Janino 라이브러리를 찾을 수 없습니다"
8
A
답변
9
조건부 로깅에 대한 로그 백 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의 중복 믿습니다.
FAQ에 Janino 항목이 있습니다. http://logback.qos.ch/setup.html#janino –