SpringBoot入門


3.データベースを操作するプログラム作成

3-1 データベース用のプロジェクトの作成

なお、既存のプロジェクトでデータベースを使用するには、pom.xmlに以下のライブラリを追加します。

<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>runtime</scope> </dependency>