Backend/JAVA
[JAVA] List 출력 "System.out::println"
매번 breakpoint로 확인하는 것도 번거로운 것 같아 간단한 확인은 Console로 확인을 하고 싶었다. 아래와 같이 .forEach()와 System.out::println을 이용하여 Console에 List에 담긴 항목들을 출력할 수 있다. List resultList = mapper.getUserList(site_code); resultList.forEach(System.out::println);
2022. 5. 20. 13:27