これが私がSpringBootの問題を解決した方法です:
-
pom.xml
に依存関係を追加します :
<dependency>
<groupId>com.vladmihalcea</groupId>
<artifactId>hibernate-types-52</artifactId>
<version>2.11.1</version>
</dependency>
- 次のようにHybernate方言を拡張します:
import com.vladmihalcea.hibernate.type.array.StringArrayType;
import org.hibernate.dialect.PostgreSQL94Dialect;
public class PostgreSQL94CustomDialect extends PostgreSQL94Dialect {
public PostgreSQL94CustomDialect() {
super();
this.registerHibernateType(2003, StringArrayType.class.getName());
}
}
-
PostgreSQL94CustomDialect
を指定しますapplication.properties
内 :
spring.jpa.properties.hibernate.dialect=com.package.name.PostgreSQL94CustomDialect