메모장
List Map 로그 본문
for (Map<String, Object> map : mapList) {
for (Map.Entry<String, Object> elem : map.entrySet()) {
System.out.println(elem.getKey() + " : " + elem.getValue());
}
}
'Java' 카테고리의 다른 글
Redis 더티 체킹(Dirty Checking) (0) | 2025.02.17 |
---|---|
rollbackFor 예외 지정 (0) | 2025.02.17 |
LocalDateTime, String 변환 (0) | 2024.07.11 |
JPA Index 설정 (0) | 2024.03.29 |
마이크로서비스 아키텍처(Microservices Architecture, MSA) (0) | 2024.01.15 |