SpringBoot Railsからの移行処理


2.RailsをSpringBootに移行する

2.2 データベースの設定

①データベース(PostgreSQL用)の設定を行います

・src/main/resources/application.propertiesに以下のデータベース情報を設定します。

・データベース名はRailsでconfig/database.ymlに指定した「webmemo_development」を使用します

spring.datasource.driver-class-name=org.postgresql.Driver
spring.datasource.url=jdbc:postgresql://localhost:5432/webmemo_development
spring.datasource.username=postgres
spring.datasource.password=<環境設定で登録したパスワード>