🔧 demo-reactive-app 의 datastore 의존성 변경: datastore-mongo-reactive -> datastore-mariadb-reactive
This commit is contained in:
@@ -11,5 +11,7 @@ dependencies {
|
|||||||
|
|
||||||
implementation(project(":util:common-util"))
|
implementation(project(":util:common-util"))
|
||||||
implementation(project(":core:demo-reactive-core"))
|
implementation(project(":core:demo-reactive-core"))
|
||||||
implementation(project(":infrastructure:datastore-mongodb-reactive"))
|
implementation(project(":infrastructure:datastore-mariadb-reactive"))
|
||||||
|
|
||||||
|
implementation("io.netty:netty-resolver-dns-native-macos:4.1.86.Final:osx-aarch_64")
|
||||||
}
|
}
|
||||||
@@ -7,12 +7,27 @@ spring:
|
|||||||
import:
|
import:
|
||||||
- demo-reactive-app.yml
|
- demo-reactive-app.yml
|
||||||
|
|
||||||
data:
|
r2dbc:
|
||||||
mongodb:
|
url: r2dbc:mariadb://localhost:3306/book
|
||||||
uri: mongodb://localhost:27017/book
|
username: test
|
||||||
|
password: test
|
||||||
|
pool:
|
||||||
|
max-size: 50
|
||||||
|
validation-query: SELECT 1
|
||||||
|
initial-size: 10
|
||||||
|
enabled: true
|
||||||
|
|
||||||
|
h2:
|
||||||
|
console:
|
||||||
|
enabled: true
|
||||||
|
path: /h2-console
|
||||||
|
|
||||||
|
# data:
|
||||||
|
# mongodb:
|
||||||
|
# uri: mongodb://localhost:27017/book
|
||||||
|
|
||||||
server:
|
server:
|
||||||
port: 8080
|
port: 8081
|
||||||
tomcat:
|
tomcat:
|
||||||
basedir: .
|
basedir: .
|
||||||
# accesslog:
|
# accesslog:
|
||||||
|
|||||||
Reference in New Issue
Block a user