
Spring Boot 2 → 3 마이그레이션 후 로그가 출력되지 않는 문제Spring Boot 3으로 마이그레이션한 후 바인딩된 값이 로그에 찍히지 않는 문제를 겪었습니다. SQL 쿼리는 정상적으로 출력되지만, ?에 어떤 값이 들어갔는지 확인할 수 없었습니다. 예를 들어, 다음과 같은 JPA 쿼리를 실행한다고 가정해 보겠습니다.List products = productRepository.findByPriceLessThan(5000); Spring Boot 2에서는 로그가 이렇게 출력되었습니다.select product0_.id, product0_.name, product0_.price from products product0_ where product0_.price Spring Boot 3에서 기존 설정..