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

Come risolvere org.postgresql.jdbc.PgConnection.createClob() non è ancora implementato

Dopo alcuni test ho potuto risolvere questo. Sembra che mancasse l'implementazione di Hibernate, quindi per risolverlo l'ho aggiunto nel file gradle.build. Pensavo che Spring-boot se ne fosse già occupato quando ho ottenuto l'APP, ma mi sbagliavo. Ecco le mie dipendenze aggiornate da gradle.build:

dependencies {

//Spring
//implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
//runtimeOnly 'org.springframework.boot:spring-boot-devtools'
testImplementation 'org.springframework.boot:spring-boot-starter-test'

//Hibernate
implementation 'org.hibernate:hibernate-core:5.4.2.Final'
implementation 'org.hibernate:hibernate-entitymanager:5.4.2.Final'

//Postgres
implementation 'org.postgresql:postgresql:42.2.5.jre7'

//Gson
implementation 'com.google.code.gson:gson:2.8.5'

//Logger
implementation 'log4j:log4j:1.2.17'

}