로그를 찍히게 하기 위해 pom.xml 에 추가해야 하는 dependency가 있다.
<!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.10</version>
<scope>test</scope>
</dependency>
scope를 runtime으로 바꿔주어야 다 찍힌다.
'쌍용강북교육센터 > 12월 + 2022년 1월' 카테고리의 다른 글
Spring Boot : 웹프로그래밍을 위한 기본 설정 (0) | 2021.12.28 |
---|---|
Spring 환경설정 (0) | 2021.12.26 |
Tomcat 포트번호 변경 및 문자 인코딩(UTF-8) (0) | 2021.12.26 |
MariaDB 설치시 유의사항 및 간단한 쿼리 (0) | 2021.12.24 |
[Spring] AOP(Aspect Oriented Programming) 관점 지향 프로그래밍 (0) | 2021.12.21 |