[Springboot] SLF4j logback 로그 파일명 동적으로 변경하기
스프링부트에서 로그 파일명을 동적으로 남기고 싶을 때 사용하는 방법 ex. 사용자 이름별로 로그를 남기고 싶을 때.홍길동.log이순신.log심청이.log 자바 설정@Slf4jpublic class LogShiftTestApplication implements CommandLineRunner { private final Logger logger = LoggerFactory.getLogger(LogShiftTestApplication.class); public static void main(String[] args) { SpringApplication application = new SpringApplication(LogShiftTestApplication.class); ..