Skip to content

Commit

Permalink
Merge pull request #56 from Zatch-Team/Feature/ViewNearZatch
Browse files Browse the repository at this point in the history
rename: UserRepository 구현 클래스 파일 이름 수정
  • Loading branch information
plum-king authored Jun 12, 2023
2 parents 4325e66 + 26248ef commit 8514500
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
import java.util.Map;

@Repository
public class JdbcUserRepository implements UserRepository {
public class UserRepositoryImpl implements UserRepository {

private static Map<Long, User> user = new HashMap<>();
private final JdbcTemplate jdbcTemplate;

public JdbcUserRepository(DataSource dataSource) {
public UserRepositoryImpl(DataSource dataSource) {
this.jdbcTemplate = new JdbcTemplate(dataSource);
}

Expand Down

0 comments on commit 8514500

Please sign in to comment.