PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Nenhum mapeamento de dialeto para o tipo JDBC:2003


Foi assim que resolvi o problema no SpringBoot:
  1. Adicionar dependência a pom.xml :
        <dependency>
            <groupId>com.vladmihalcea</groupId>
            <artifactId>hibernate-types-52</artifactId>
            <version>2.11.1</version>
        </dependency>
  1. Estenda seu dialeto de hibernação da seguinte forma:
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());
    }

}
  1. Especifique o PostgreSQL94CustomDialect em application.properties :
spring.jpa.properties.hibernate.dialect=com.package.name.PostgreSQL94CustomDialect