We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afbbd88 commit 71aeb17Copy full SHA for 71aeb17
Spring_part_3/src/main/java/spring/oldboy/repository/UserRepository.java
@@ -0,0 +1,14 @@
1
+package spring.oldboy.repository;
2
+
3
+import org.springframework.stereotype.Repository;
4
+import spring.oldboy.pool.StarterConnectionPool;
5
6
+@Repository
7
+public class UserRepository {
8
9
+ private final StarterConnectionPool connectionPool;
10
11
+ public UserRepository(StarterConnectionPool connectionPool) {
12
+ this.connectionPool = connectionPool;
13
+ }
14
+}
0 commit comments