3536373839404142434445
for (Comment comment: comments) { System.out.println(comment.getPostBy()); } List<String> replyTos = commentService.findReplyToByEntryId(3l); for (String replyTo: replyTos) { System.out.println(replyTo); } }