Så här har jag löst problemet i SpringBoot:
- Lägg till beroende till
pom.xml
:
<dependency>
<groupId>com.vladmihalcea</groupId>
<artifactId>hibernate-types-52</artifactId>
<version>2.11.1</version>
</dependency>
- Utöka din Hybernate Dialekt enligt följande:
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());
}
}
- Ange
PostgreSQL94CustomDialect
iapplication.properties
:
spring.jpa.properties.hibernate.dialect=com.package.name.PostgreSQL94CustomDialect