일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 오류모음
- 무결성 제약조건
- for문
- spring
- 백준문제풀이
- Oracle
- 깃허브 블로그
- 백준문제
- 인터페이스
- 이클립스
- 이클립스단축기
- Ajax
- 오류
- ORA-01407
- 티스토리 블로그
- 파워서플라이
- while
- 전화번호부
- MSI
- 별 찍기
- ORA-02292
- jsp
- 순환문
- 오라클
- 백준
- 설정
- 자바
- 환경설정
- 스프링
- 공부
Archives
- Today
- Total
danDevlog
java.lang.NoClassDefFoundError: Unable to find Log4j2 as default logging library. Please provide a logging library and configure a valid spyLogDelegator name in the properties file. 본문
오류 및 편의성 모음
java.lang.NoClassDefFoundError: Unable to find Log4j2 as default logging library. Please provide a logging library and configure a valid spyLogDelegator name in the properties file.
단데기이 2022. 5. 3. 16:23728x90
Log4j2 라이브러리를 찾을수 없다 그말이다.
Log4j2는 api와 core로 나누어져있다
Log4j-api와 Log4j-core 메이븐을 추가하면 해결된다.
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.0.1</version>
</dependency>
'오류 및 편의성 모음' 카테고리의 다른 글
Comments