일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- AWS
- docker
- design pattern
- 스프링
- 마이바티스
- 자바
- 리팩토링
- kubernetes
- Spring
- Winform
- github
- mybatis
- 리액트
- VOA
- react
- 코틀린
- c#
- machine-learning
- springboot
- git
- Spring Boot
- Kotlin
- 쿠버네티스
- 스프링부트
- 파이썬
- 도커
- DataGridView
- Python
- MySQL
- Java
Archives
- Today
- Total
보뇨 다이어리
Spring Boot : Gradle 에서 logging 제외시키기 본문
반응형
다른 사람들은 모두 메이븐으로 빌드해버려서 간단한건데도 인터넷 찾느랴 시간버림...ㅠ
맨처음 제외시키지않고 컴파일하면 이런 에러가 발생한다 뭐 첫문장부터 보면 왜 뻑나는지 알수있져
바로 기존 spring boot 에 logging 과 겹치기때문에 에러를 툭 하니 뱉는건데...나도 다 아는데 어떻게 exclude 시키는지몰라서 고생했단말이유...
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/C:/Users/ee/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-slf4j-impl/2.11.2/4d44e4edc4a7fb39f09b95b09f560a15976fa1ba/log4j-slf4j-impl-2.11.2.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/C:/Users/ee/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.2.3/7c4f3c474fb2c041d8028740440937705ebb473a/logback-classic-1.2.3.jar!/org/slf4j/impl/StaticLoggerBinder.class]
뭐 정답은 아래와 같이 해주면 된다
configurations {
compile.exclude module: 'spring-boot-starter-logging'
}
출처
https://stackoverflow.com/questions/28734647/gradle-spring-boot-dependencies-are-not-excluding
반응형
'컴퓨터 관련 > Java 정보' 카테고리의 다른 글
Spring RestTemplate : URI is not absolute 에러 (0) | 2019.07.25 |
---|---|
Calendar 클래스에서 특정 날짜의 요일가져오기 (0) | 2019.07.17 |
RestController 에서 공통 uri 제거하기 (0) | 2019.07.16 |
RestAPI POST 시 return 값에 대해서 (0) | 2019.06.28 |
Too many characters in character literal 에러 (0) | 2019.06.18 |