application.propertiesは以下のようになる。 application.properties spring.jpa.database=POSTGRESQLspring.datasource.url=jdbc:postgresql://localhost:5432/testdbspring.datasource.username=testuserspring.datasource.password=secretspring.jpa.hibernate.ddl-auto=validatespring.jpa.properties.hibernate.format_sql=true...
はじめにお疲れ様です! @Keichan_15 です!今回は Spring Boot と PostgreSQL を使用して、フォームに入力した値をDBに登録した後に、登録データを表示する機能を作…
まずはTestconteinersでPostgreSQLを利用するための依存関係をbuild.gradle.ktに追加する build.gradle.kts testImplementation("org.testcontainers:testcontainers:1.15.3")testImplementation("org.testcontainers:junit-jupiter:1.15.3")testImplementation("org.testcontainers:postgresql:1.15.3") テストコードではTest...