-
Notifications
You must be signed in to change notification settings - Fork 300
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[JDBC 라이브러리 구현하기 - 1단계] 파워(송재백) 미션 제출합니다. #272
Conversation
안녕하세요 파워! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
안녕하세요 파워!
간단한 리뷰인데 너무 늦게 드린것 같아 죄송합니다 🥲
코멘트를 몇가지 남기긴 했는데, 말씀하신대로 리팩토링은 2단계에서 진행할 사항으로 보여 approve 하겠습니다.
리뷰에 대한 코멘트도 남겨주지 않으셔도 됩니다.
아마 파워도 다 알고 계신 부분이지만 2단계를 위해 남겨두신게 아닐까 싶어서요! (그래도 리뷰를 남긴것은..코멘트도 없이 넘기는것도 죄송해서입니다..😂)
다음 단계도 화이팅하시고, 즐거운 한가위 보내세요!
private final DataSource dataSource; | ||
private final JdbcTemplate jdbcTemplate; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
DataSource를 더이상 사용하지 않는 것으로 보이는데, 가지고 있을 이유가 있을까요?
} | ||
|
||
public void update(final User user) { | ||
// todo | ||
String sql = "update users set id = ?, account = ?, password = ?, email = ? where id = ?"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#컨벤션
아래 메소드에도 동일하게 적용되는 사항인데, sql 변수에 대해서 접근제어자와 타입을 통일해 주는건 어떨까요?
return jdbcTemplate.query(sql, rs -> new User( | ||
rs.getLong(1), | ||
rs.getString(2), | ||
rs.getString(3), | ||
rs.getString(4))); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#컨벤션
해당 구조가 반복되는 것으로 보여요!
} finally { | ||
try { | ||
if (rs != null) { | ||
rs.close(); | ||
} | ||
} catch (SQLException ignored) { | ||
} | ||
|
||
try { | ||
if (pstmt != null) { | ||
pstmt.close(); | ||
} | ||
} catch (SQLException ignored) { | ||
} | ||
|
||
try { | ||
if (conn != null) { | ||
conn.close(); | ||
} | ||
} catch (SQLException ignored) { | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
close를 위한 코드가 복잡한데, 다른 방식으로 줄일 수 있을 것 같아요 😊
public interface RowMapper<T> { | ||
|
||
T mapRow(ResultSet rs) throws SQLException; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
저는 rowNum을 사용하지 않아도 된다는 생각은 미처 못했는데, 디테일한 부분까지 신경쓰시는군요 👍👍
안녕하세요 이오
step2가 리팩터링이여서 기능 돌아갈정도로만 구현했습니다,,
저는 RowMapper에서 rowNum을 사용하지않았는데
spring-projects/spring-framework#7796 (comment)
RowMapper rowNum에 관한 Pr을 확인했을때
라는 이유때문에 대부분 사용하지않지만 남겨둔것으로 보였습니다.
그래서 저는 이때까지 rowNum을 사용해본적이없고 오히려 불편하기도하며 코드가 더러워지는것같아서 제거했습니다,,
flyway jdbc도 rowNum없이 인터페이스를 정의했네요,,
이번 미션 잘 부탁드립니다! 👍