Skip to content
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

Merged
merged 3 commits into from
Sep 28, 2023

Conversation

thdwoqor
Copy link

@thdwoqor thdwoqor commented Sep 26, 2023

안녕하세요 이오
step2가 리팩터링이여서 기능 돌아갈정도로만 구현했습니다,,

저는 RowMapper에서 rowNum을 사용하지않았는데
spring-projects/spring-framework#7796 (comment)
RowMapper rowNum에 관한 Pr을 확인했을때

  • 적은 정보를 제공하기 보다 많은 정보를 제공하는 것이 낫다
  • rowNum 인수를 무시하는 것은 충분히 쉽다

라는 이유때문에 대부분 사용하지않지만 남겨둔것으로 보였습니다.
그래서 저는 이때까지 rowNum을 사용해본적이없고 오히려 불편하기도하며 코드가 더러워지는것같아서 제거했습니다,,

image

flyway jdbc도 rowNum없이 인터페이스를 정의했네요,,

이번 미션 잘 부탁드립니다! 👍

@LJW25
Copy link

LJW25 commented Sep 28, 2023

안녕하세요 파워!
제가 리뷰요청 보내주신걸 모르고있다가, 이제서야 확인했네요, 정말 죄송합니다 🥲
혹시 다음에도 제가 하루 이상 아무 확인표시가 없다면, DM 부탁드려요!
리뷰 바로 남기도록 하겠습니다!!

Copy link

@LJW25 LJW25 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

안녕하세요 파워!
간단한 리뷰인데 너무 늦게 드린것 같아 죄송합니다 🥲

코멘트를 몇가지 남기긴 했는데, 말씀하신대로 리팩토링은 2단계에서 진행할 사항으로 보여 approve 하겠습니다.
리뷰에 대한 코멘트도 남겨주지 않으셔도 됩니다.
아마 파워도 다 알고 계신 부분이지만 2단계를 위해 남겨두신게 아닐까 싶어서요! (그래도 리뷰를 남긴것은..코멘트도 없이 넘기는것도 죄송해서입니다..😂)

다음 단계도 화이팅하시고, 즐거운 한가위 보내세요!

Comment on lines 14 to +15
private final DataSource dataSource;
private final JdbcTemplate jdbcTemplate;
Copy link

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 = ?";
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#컨벤션 아래 메소드에도 동일하게 적용되는 사항인데, sql 변수에 대해서 접근제어자와 타입을 통일해 주는건 어떨까요?

Comment on lines +48 to +52
return jdbcTemplate.query(sql, rs -> new User(
rs.getLong(1),
rs.getString(2),
rs.getString(3),
rs.getString(4)));
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#컨벤션 해당 구조가 반복되는 것으로 보여요!

Comment on lines +44 to +65
} 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) {
}
}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

close를 위한 코드가 복잡한데, 다른 방식으로 줄일 수 있을 것 같아요 😊

Comment on lines +7 to +10
public interface RowMapper<T> {

T mapRow(ResultSet rs) throws SQLException;
}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

저는 rowNum을 사용하지 않아도 된다는 생각은 미처 못했는데, 디테일한 부분까지 신경쓰시는군요 👍👍

@LJW25 LJW25 merged commit 5540e2b into woowacourse:thdwoqor Sep 28, 2023
1 check failed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants