ファイルベースの H2 データベースを使用するように Spring Boot を構成する方法 質問する

ファイルベースの H2 データベースを使用するように Spring Boot を構成する方法 質問する

メモリ内の H2 組み込みデータベースを使用する Spring Boot アプリケーションを正常に作成しました。これを永続的なファイル ベースのバージョンに変更したいと思います。

spring.datasource.*ファイル内のプロパティを変更してみたところapplication.properties、次のようになりました。

spring.datasource.url=jdbc:h2:file:~/test;DB_CLOSE_ON_EXIT=FALSE
spring.datasource.username=test
spring.datasource.password=test
spring.datasource.driverClassName=org.h2.Driver`  

Spring Boot は次のように起動するため、これらの設定を無視するようです。

o.s.j.d.e.EmbeddedDatabaseFactory        : Starting embedded database: url='jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=false', username='sa'

My にはpom.xml、この投稿に関連する可能性のある次の依存関係が含まれています。

<parent>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-parent</artifactId>
  <version>1.3.5.RELEASE</version>
</parent>
....
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency> 
<dependency>
    <groupId>com.h2database</groupId>
    <artifactId>h2</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
</dependency>

ドキュメントといくつかの投稿から私が理解しているのは、構成は問題なく機能するはずだということですが、私の場合はうまくいきませんでした。いくつかの基本的なエラーを防ぐために、次のことを試して確認しました。

  1. 私のアプリケーション プロパティはクラスパスにあります:
  2. 注釈の自動設定を除外しようとしました@EnableAutoConfiguration
  3. dataSourceアノテーション と の組み合わせを使用して Bean を注入し@Primary@ConfigurationProperties(prefix = "spring.datasource")を使用してプログラム的にプロパティを設定しようとしましたDataSourceBuilder。これにより、 という型に関連する他のエラーが発生しますnull

重要な概念か何かが欠けているようです。誰か助けてくれませんか。

更新 1: 自動構成レポートからの抜粋:

Positive matches:
-----------------

    DataSourceAutoConfiguration matched
  - @ConditionalOnClass classes found: javax.sql.DataSource,org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType (OnClassCondition)

   DataSourceAutoConfiguration.DataSourceInitializerConfiguration matched
  - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.DataSourceInitializer; SearchStrategy: all) found no beans (OnBeanCondition)

   DataSourceAutoConfiguration.EmbeddedConfiguration matched
  - embedded database H2 detected (DataSourceAutoConfiguration.EmbeddedDataSourceCondition)
  - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) found no beans (OnBeanCondition)

   DataSourceAutoConfiguration.JdbcTemplateConfiguration matched
  - existing auto database detected (DataSourceAutoConfiguration.DataSourceAvailableCondition)

   DataSourceAutoConfiguration.JdbcTemplateConfiguration#jdbcTemplate matched
  - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) found no beans (OnBeanCondition)

   DataSourceAutoConfiguration.JdbcTemplateConfiguration#namedParameterJdbcTemplate matched
  - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) found no beans (OnBeanCondition)

   DataSourceTransactionManagerAutoConfiguration matched
  - @ConditionalOnClass classes found: org.springframework.jdbc.core.JdbcTemplate,org.springframework.transaction.PlatformTransactionManager (OnClassCondition)

   DataSourceTransactionManagerAutoConfiguration.TransactionManagementConfiguration matched
  - @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) found no beans (OnBeanCondition)

    H2ConsoleAutoConfiguration matched
  - @ConditionalOnClass classes found: org.h2.server.web.WebServlet (OnClassCondition)
  - found web application StandardServletEnvironment (OnWebApplicationCondition)
  - matched (OnPropertyCondition)

   HibernateJpaAutoConfiguration matched
  - @ConditionalOnClass classes found: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,org.springframework.transaction.annotation.EnableTransactionManagement,javax.persistence.EntityManager (OnClassCondition)
  - found HibernateEntityManager class (HibernateJpaAutoConfiguration.HibernateEntityManagerCondition)

Negative matches:
-----------------

    DataSourceAutoConfiguration.NonEmbeddedConfiguration did not match
  - missing supported DataSource (DataSourceAutoConfiguration.NonEmbeddedDataSourceCondition)

`

更新 2: アクチュエータを追加し、エンドポイントを確認しました/configprops。ここで興味深いのは、私の構成は取得され、データベースは存在するものの、アプリケーションの実行時にこれが使用されないことですdataSource

"spring.datasource.CONFIGURATION_PROPERTIES":
    {"prefix":"spring.datasource",
     "properties":{
        "schema":null,
        "data":null,
        "xa":{"dataSourceClassName":null,
               "properties":{}
             },
        "type":null,
        "separator":";",
        "url":"jdbc:h2:file:~/test;DB_CLOSE_ON_EXIT=FALSE",
        "platform":"all",
        "continueOnError":false,
        "jndiName":null,               
        "sqlScriptEncoding":null,
        "password":"******",
        "name":"testdb",
        "driverClassName":"org.h2.Driver",
        "initialize":true,
        "username":"test"
        }
    }  

ベストアンサー1

混乱とさらなる調査を避けるために、この回答を追加します。

実は私も同じ問題を抱えていて、いくつかの答えの組み合わせがうまくいったのではなく、どの答えも完全にはうまくいきませんでした。

以下は、Spring Boot で H2 db を永続化するために必要な最小限の構成です。

アプリケーションプロパティ

# H2
spring.h2.console.enabled=true
spring.h2.console.path=/h2
# Datasource
spring.datasource.url=jdbc:h2:file:~/spring-boot-h2-db
spring.datasource.username=sa
spring.datasource.password=
spring.datasource.driver-class-name=org.h2.Driver
spring.jpa.hibernate.ddl-auto=update

これでspring.jpa.hibernate.ddl-auto=updateうまくいきます。他に何も必要ありません。

spring-boot-starter-jdbcpom.xmlに追加する必要はありません

jdbc url にパラメータを追加する必要はありません。

おすすめ記事