전체 글 (87) 썸네일형 리스트형 [Java] stream을 사용하는 예시들 map()을 활용해서, 객체 리스트 -> (stream -> 다른 stream) -> 다른 객체 리스트 로 변환하기 1. 객체 리스트를 준비한다. 2. 원하는 객체 리스트에 대한 stream 객체를 구한다. List.stream() 사용 3. stream 객체에 대하여, map()을 이용하여, 다른 stream 객체로 변환한다 map(comment -> CommentAndImage.builder().build()) 이용 4. 변환한 stream을 다른 객체 리스트로 변환한다 .collect(Collectors.toList()) 사용 @Transactional public List getCommentAndImageList(Integer productId, Integer start) { List commen.. [Spring] [SpringJDBC] insert시, key값 알아오기 keyholder를 사용하면, auto-generated된 key값을 가져올 수 있다. private NamedParameterJdbcTemplate jdbcTemplate; // 1. reservation_info 만들어서 insert // 이때, pk값 알아와야한다 public int insertReservationInfo(ReservationInfo reservationInfo){ Map params = new HashMap(); params.put("product_id", reservationInfo.getProductId()); params.put("display_info_id", reservationInfo.getDisplayInfoId()); params.put("user_id", reser.. [MYSQL] [Error] Cannot add or update a child row: a foreign key constraint fails 참조하는 테이블에 없는 키 값으로, 현재 테이블에 값을 넣으려고 했을 때 발생하는 문제이다. 즉, 부모 테이블에 없는 키 값으로, 자식 테이블에 값을 넣으려고 했을 때 발생하는 문제이다. 이전 1 ··· 3 4 5 6 7 8 9 ··· 29 다음