We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00c7f51 commit 887b0e9Copy full SHA for 887b0e9
backend/build.gradle
@@ -22,6 +22,11 @@ dependencies {
22
implementation 'org.springframework.boot:spring-boot-starter-web'
23
testImplementation 'org.springframework.boot:spring-boot-starter-test'
24
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
25
+
26
+ implementation 'org.springframework.boot:spring-boot-starter-jdbc' // Spring JDBC 의존성 추가
27
+ // https://mvnrepository.com/artifact/org.postgresql/postgresql
28
+ implementation 'org.postgresql:postgresql:42.7.3' // PostgreSQL JDBC 드라이버 의존성 추가
29
+ runtimeOnly 'org.postgresql:postgresql:42.7.3' // 실행 시에만 필요한 의존성 추가
30
}
31
32
tasks.named('test') {
backend/src/main/resources/application.properties
0 commit comments