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단계] 조이(김성연) 미션 제출합니다. #274

Merged
merged 5 commits into from
Sep 27, 2023

Conversation

yeonkkk
Copy link
Member

@yeonkkk yeonkkk commented Sep 26, 2023

안녕하세요 하마드🌱 ~ 조이입니다 !
신기하게 온보딩, 페어, 팀플, 미션 리뷰 다 같이 해보네요ㅎ

이번 미션은 2단계가 리팩터링이라 1단계 요구사항을 만족하는 방향으로 코드를 작성해봤습니다.

요구사항: 개발자가 SQL 쿼리 작성, 쿼리에 전달할 인자, SELECT 구문일 경우 조회 결과를 추출하는 것만 집중할 수 있도록 수정

그리고 죄송하게도 제가 미션 시작을 일찍 눌러서 구구가 추가하신 코드도 다 나오네요..😓
불편하시겠지만 작성한 코드는 여기에서 확인 부탁드리겠습니다!

리뷰 잘 부탁 드립니다!!ㅎ🫡

Copy link

@rawfishthelgh rawfishthelgh left a comment

Choose a reason for hiding this comment

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

조이 안녕하세요~!
요구사항을 잘 구현해주신 것 같아 Approve 하겠습니다.
한가지 궁금한 점이 있어서 코멘트 남겼는데, 이 부분만 응답해주세요~!

}

public <T> T queryForObject(final String sql, final RowMapper<T> rowMapper, final Object... args) {
try (final Connection connection = requireNonNull(dataSource).getConnection();

Choose a reason for hiding this comment

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

이 부분은 dataSource.getConnection()을 사용하지 않고 requireNonNull(dataSource).getConnection()을 사용한 이유가 있을까요?

Copy link
Member Author

@yeonkkk yeonkkk Sep 27, 2023

Choose a reason for hiding this comment

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

사실 requiredNonNull(dataSource)를 사용하든 안 하든 dataSourcenull이면 NPE가 터집니다.
저는 명시적인 이유로 requireNonNull()을 사용하긴 했는데, 하마드의 리뷰를 보고 좀 더 확인해보니 더 다양한 이유들로 requireNonNull()를 사용하네요!

참고하면 좋을 자료 놓고 갑니다 !

추가로 더 생각해봤는데 만약 requireNonNull()을 명시적인 목적으로 그대로 가져간다면
requireNonNull(dataSource, () -> "dataSource가 null 입니다.")와 같이 수정하는 것도 생각해볼 수 있을 것 같네요..
그리고 생성자로 주입할 때 requiredNonNull()을 붙여서 중복 코드없이 한번에 처리하는 것도 좋겠네요.

하마드 덕분에 해당 메서드 사용에 대해 좀 더 고민해보게 된 것 같아요. 감사합니다!

Comment on lines +41 to +45
try (final ResultSet resultSet = preparedStatement.executeQuery()) {
if (resultSet.next()) {
return rowMapper.mapRow(resultSet, resultSet.getRow());
}
}

Choose a reason for hiding this comment

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

오...가변인자로 받고 ResultsSet까지 try with resources로 처리할 생각은 못했는데 저도 적용해봐야겠네요...

@rawfishthelgh rawfishthelgh merged commit 56c72f5 into woowacourse:yeonkkk Sep 27, 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.

3 participants