PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Nessuna mappatura dialettale per il tipo JDBC:2003

Ecco come ho risolto il problema in SpringBoot:

  1. Aggiungi dipendenza a pom.xml :
        <dependency>
            <groupId>com.vladmihalcea</groupId>
            <artifactId>hibernate-types-52</artifactId>
            <version>2.11.1</version>
        </dependency>
  1. Estendi il tuo dialetto ibernato come segue:
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. Specificare il PostgreSQL94CustomDialect in application.properties :
spring.jpa.properties.hibernate.dialect=com.package.name.PostgreSQL94CustomDialect