작성
·
542
·
수정됨
0
안녕하세요. 강의 너무 잘 듣고 있습니다.
JdbcTemplateItemRepositoryV1 코드를 분석하다가
궁금한 점이 생겨서 질문을 드리게 되었습니다.
save 메서드에서 connection 부분인데요.
전체 코드를 봐도 connection 이라는게 보이지 않는데
저렇게 매개변수로 넣고 connection.prepareStatement
가 호출되는 것이 잘 이해가 안되서 질문드립니다 ㅠㅠ
추가적으로 itemRowMapper()의 rs, rowNum도 어떻게
나와서 호출이 되는지 궁금합니다..!
@Override
public Item save(Item item) {
String sql = "insert into item(item_name, price, quantity) values (?, ?, ?)";
KeyHolder keyHolder = new GeneratedKeyHolder();
template.update(connection -> {
//자동 증가 키
PreparedStatement ps = connection.prepareStatement(sql, new String[]{"id"});
ps.setString(1, item.getItemName());
ps.setInt(2, item.getPrice());
ps.setInt(3, item.getQuantity());
return ps;
}, keyHolder);
long key = keyHolder.getKey().longValue();
item.setId(key);
return item;
}
private RowMapper<Item> itemRowMapper() {
return ((rs, rowNum) -> {
Item item = new Item();
item.setId(rs.getLong("id"));
item.setItemName(rs.getString("item_name"));
item.setPrice(rs.getInt("price"));
item.setQuantity(rs.getInt("quantity"));
return item;
});
}
답변 2
4
안녕하세요.
저도 동일한 내용이 궁금했어서, 제가 찾아보고 이해한 내용 공유드려요.
질문에 대한 답은 3번에 있는데 만약 3번이 바로 이해가 안가시면 1,2번을 순서대로 읽으시면 이해하실 수 있을 거예요.
1. 람다 개념 이해
우선은 내용을 이해하기 위해 '익명 클래스와 람다'의 기본 개념을 알아야 합니다.
저는 아래 페이지 내용이 이해하기 쉬웠어요!
[자바 무료 강의] [심화] 익명 클래스와 람다 - 코드라떼 (codelatte.io)
이 내용을 읽고 "람다 표현식은 인터페이스의 추상메소드를 오버라이드하여 구현하는 것이다."를 이해하시면 될 것 같아요.
2. 람다 표현식이 적용되지 않은 예제로 이해
jdbcTemplate.update(new PreparedStatementCreator() {
@Override
public PreparedStatement createPreparedStatement(Connection con) throws SQLException {
PreparedStatement pstmt = con.prepareStatement("...");
pstmt.setString(1, member.getEmail());
pstmt.setString(2, member.getPassword());
pstmt.setString(3, member.getName());
return pstmt;
}
});
이 코드를 보고 아래 내용을 이해할 수 있으면 됩니다.
jdbcTemplate.update
함수는 PreparedStatementCreator
타입을 파라미터로 가진다. (JdbcTemplate.class
에서도 확인 가능합니다.)
PreparedStatementCreator
의 createPreparedStatement
추상 메소드를 오버라이드하여 jdbcTemplate.update
의 파라미터로 전달하고 있는 것이다.
createPreparedStatement
추상 메소드의 파라미터가 Connection
이다.
위 코드를 람다 표현식으로 구현한 것이 강의 예제(아래 코드)이다.
template.update(connection -> {
//자동 증가 키
PreparedStatement ps = connection.prepareStatement(sql, new String[]{"id"});
ps.setString(1, item.getItemName());
ps.setInt(2, item.getPrice());
ps.setInt(3, item.getQuantity());
return ps;
}, keyHolder);
3. connection
파라미터가 어디서 전달되는지 JdbcTemplate.class
에서 확인
template.update
함수를 타고 들어가면 람다 표현식을 통해 전달받은 psc
파라미터가 execute()
함수로 전달되는 것을 확인 가능합니다.
@Override
public int update(final PreparedStatementCreator psc, final KeyHolder generatedKeyHolder) throws DataAccessException {
...
return updateCount(execute(psc, ps -> {
execute()
함수로 들어가면 psc
를 전달받아 createPreparedStatement()
함수를 실행하는데, 이 때 connection
을 파라미터로 넘겨주는 부분을 확인 가능합니다!
@Nullable
private <T> T execute(PreparedStatementCreator psc, PreparedStatementCallback<T> action, boolean closeResources)
throws DataAccessException {
...
Connection con = DataSourceUtils.getConnection(obtainDataSource());
PreparedStatement ps = null;
try {
ps = psc.createPreparedStatement(con); // 여기!
이 위치에서 예제에서 구현한 람다 표현식이 실행됩니다.
도움이 되길 바랍니다. 😃
0
안녕하세요. aj4941님, 공식 서포터즈 OMG입니다.
.
해당 내용은 자바 람다에 관련된 내용으로 람다를 학습하시면 이해되실꺼에요.
https://www.youtube.com/watch?v=sS-_Xr5Q4V4&ab_channel=%EC%9A%B0%EC%95%84%ED%95%9CTech
참고로 connection, rs, rowNum의 이름은 반드시 해당 이름으로 사용하지 않아도 됩니다.
마치 우리가 메서드를 정의할 때 아래와 같이 첫번째 파라미터의 이름을 a, 두번째 파라미터의 이름을 b로 정의할 수도 있지만
public int sum(int a, int b) {
return a + b;
}
아래와 같이 first, second로 정의해도 sum()의 동작은 동일한 것과 비슷한 개념으로 이해하시면 될 것 같아요.
public int sum (int first, int second) {
return first+second;
}
.
감사합니다.
답변 감사합니다!
궁금한게 connection을 파라미터로 이용되면 이 자료형이 어떤 것인지 알 수 없는데
저렇게 connection.p 만 치더라도 connection.prepareStatement가 인텔리제이에서
자동완성이 되는게 의문입니다 ㅠ
int connection이 들어갔다고 치면 저 메서드는 호출할수가 없는데 어떻게 자동으로
판단해서 값이 들어가는걸까요?