私は完全にPostgreSQLの初心者であり、Spring Webアプリケーションを構成しています。さらに、これについて知ることができるすべての情報はMavenまたはEclipseにあるため、IntelliJ + Gradleを使用している原因を理解するのは非常に困難です。 iMacにPostgres v 9.5.4.2をインストールし、シンプルなWebアプリを開始しました。
[〜#〜] update [〜#〜]:行われたすべての修正、M。Deinum、gradle-2.13はSpringBootで問題ありませんか?
プロジェクト構造:
build.gradle:
buildscript {
ext {
springBootVersion = '1.3.7.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'Java'
apply plugin: 'idea'
apply plugin: 'spring-boot'
jar {
baseName = 'TryPostgreSQL'
version = '0.0.1-SNAPSHOT'
}
repositories {
mavenCentral()
}
dependencies {
compile 'org.springframework.boot:spring-boot-starter-web'
compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
compile 'org.springframework.boot:spring-boot-starter-data-jpa'
compile 'org.springframework.boot:spring-boot-starter-security'
compile 'org.springframework.boot:spring-boot-starter-aop'
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity4'
compile 'com.google.code.gson:gson'
compile 'org.postgresql:postgresql'
testCompile 'org.springframework.boot:spring-boot-starter-test'
testCompile("org.dbunit:dbunit:2.5.1")
testCompile("com.github.springtestdbunit:spring-test-dbunit:1.2.1")
testCompile("net.sourceforge.htmlunit:htmlunit:2.20")
testCompile("org.easytesting:fest-assert:1.4")
testCompile ("org.springframework.security:spring-security-test")
}
task wrapper(type: Wrapper) {
gradleVersion = '3.0'
}
task stage {
dependsOn build
}
Application.Java
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
application.properties(理由はわかりませんが、方言の属性は太字の赤です):
# Details for our datasource
spring.datasource.url = jdbc:postgresql://localhost:5432/database
spring.datasource.username = postgres
spring.datasource.password = postgres
# Hibernate properties
spring.jpa.database = org.hibernate.dialect.PostgreSQLDialect
spring.jpa.show-sql = false
spring.jpa.hibernate.ddl-auto = create-drop
spring.jpa.hibernate.naming.implicit-strategy = org.hibernate.boot.model.naming.ImplicitNamingStrategyJpaCompliantImpl
spring.jpa.properties.hibernate.format_sql=true
そしてもちろんエラーメッセージ:
2016-09-16 09:17:19.978 WARN 773 --- [ main] ationConfigEmbeddedWebApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private javax.sql.DataSource org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration.dataSource; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceAutoConfiguration$NonEmbeddedConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [javax.sql.DataSource]: Factory method 'dataSource' threw exception; nested exception is org.springframework.boot.autoconfigure.jdbc.DataSourceProperties$DataSourceBeanCreationException: Cannot determine embedded database driver class for database type NONE. If you want an embedded database please put a supported one on the classpath. If you have database settings to be loaded from a particular profile you may need to active it (no profiles are currently active).
2016-09-16 09:17:19.985 INFO 773 --- [ main] o.Apache.catalina.core.StandardService : Stopping service Tomcat
2016-09-16 09:17:19.996 ERROR 773 --- [ main] o.s.boot.SpringApplication : Application startup failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private javax.sql.DataSource org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration.dataSource; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceAutoConfiguration$NonEmbeddedConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [javax.sql.DataSource]: Factory method 'dataSource' threw exception; nested exception is org.springframework.boot.autoconfigure.jdbc.DataSourceProperties$DataSourceBeanCreationException: Cannot determine embedded database driver class for database type NONE. If you want an embedded database please put a supported one on the classpath. If you have database settings to be loaded from a particular profile you may need to active it (no profiles are currently active).
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.Java:334) ~[spring-beans-4.2.7.RELEASE.jar:4.2.7.RELEASE]
その他のコード-ちょうど通常のモデル(私のエンティティ)、dao(Crudリポジトリ)、サービス、コントローラー。とにかく起動さえできず、起動直後にこのエラーメッセージが表示されます:
このプログラムを起動してPostgeSQLデータベースに接続するための助けをいただければ幸いです。
UPDATE 2:移動しました。更新されました。エラー:
Properties configuration failed validation
2016-09-16 09:41:53.696 ERROR 883 --- [ main] o.s.b.b.PropertiesConfigurationFactory : Field error in object 'spring.jpa' on field 'database': rejected value [org.hibernate.dialect.PostgreSQLDialect]; codes [typeMismatch.spring.jpa.database,typeMismatch.database,typeMismatch.org.springframework.orm.jpa.vendor.Database,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [spring.jpa.database,database]; arguments []; default message [database]]; default message [Failed to convert property value of type [Java.lang.String] to required type [org.springframework.orm.jpa.vendor.Database] for property 'database'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [Java.lang.String] to type [org.springframework.orm.jpa.vendor.Database] for value 'org.hibernate.dialect.PostgreSQLDialect'; nested exception is Java.lang.IllegalArgumentException: No enum constant org.springframework.orm.jpa.vendor.Database.org.hibernate.dialect.PostgreSQLDialect]
UPDATE 3:application.propertyのプロパティの名前をデータベースから方言に変更しました。アプリケーションが開始されました!
あなたはSpring Bootを使用しています(少なくともそれはあなたが述べていることです)が、あなたのコードはSpring Bootを使用しないように本当に懸命に努力していることを示しています。
最初にApplication
クラス、理想的にはcom.zzheads.trypostgresql
のようなトップレベルのパッケージにあるべきです。これにより、@ComponentScan
を削除し、すべての注釈を単純な@SpringBootApplication
注釈に置き換えることができます。 (static
セクションも削除されていることに注意してください!)。
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
次に、依存関係。 Spring Bootは、依存関係を探す手間を省くという事実のために存在する初期プロジェクトを提供します。これらの依存関係を修正して、Spring Boot Startersを使用します。 Spring Bootの最新の1.3.7.RELEASEを使用してみてください(1.3行を使用しているようです)。
springBootVersion = '1.3.7.RELEASE'
注:Spring Bootプラグイン(および依存関係プラグイン)は現在、Gradle 3では動作しません( this )。
依存関係
dependencies {
compile 'org.springframework.boot:spring-boot-starter-web'
compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
compile 'org.springframework.boot:spring-boot-starter-data-jpa'
compile 'org.springframework.boot:spring-boot-starter-security'
compile 'org.springframework.boot:spring-boot-starter-aop'
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity4'
compile 'com.google.code.gson:gson'
compile 'org.postgresql:postgresql'
testCompile 'org.springframework.boot:spring-boot-starter-test'
testCompile("org.dbunit:dbunit:2.5.1")
testCompile("com.github.springtestdbunit:spring-test-dbunit:1.2.1")
testCompile("net.sourceforge.htmlunit:htmlunit:2.20")
testCompile("org.easytesting:fest-assert:1.4")
testCompile ("org.springframework.security:spring-security-test")
}
Spring Bootは依存関係管理も提供するため、すでに管理されている依存関係のバージョンを削除できます。
次のSpring BootはすでにDataSource
とJPAを設定しています。自分でやる必要はありません。したがって、DataConfig
を削除してください。
最後に、 正しい場所 に配置すると、Spring Bootによってロードされるapplication.properties
。それらの場所のいずれかに移動します。
データソースとJPAを自動的に構成できるように、適切なプロパティ名を使用します。
# Details for our datasource
spring.datasource.url = jdbc:postgresql://localhost:5432/database
spring.datasource.username = postgres
spring.datasource.password = postgres
# Hibernate properties
spring.jpa.database-platform = org.hibernate.dialect.PostgreSQL94Dialect
spring.jpa.show-sql = false
spring.jpa.hibernate.ddl-auto = create-drop
spring.jpa.hibernate.naming.implicit-strategy = org.hibernate.boot.model.naming.ImplicitNamingStrategyJpaCompliantImpl
spring.jpa.properties.hibernate.format_sql=true
注:_application.properties
がsrc/main/resources
ではなくsrc/main/Java
にあることを確認してください。それらが後者にある場合、Maven/Gradleはそれらを無視します。
エンティティがcom.zzheads.trypostgresql
のサブパッケージに含まれている場合、それらは既に自動的に検出されるため、何も追加する必要はありません。それらがApplication
クラスに@EntityScan
注釈を追加していない場合、それを修正します。同じことがJPAリポジトリにも当てはまります。サブパッケージに含まれている場合は、何もする必要はありません。