sql >> データベース >  >> RDS >> PostgreSQL

org.postgresql.jdbc.PgConnection.createClob()を解決する方法はまだ実装されていません

    いくつかのテストの後、私はこれを解決することができました。 Hibernateの実装が欠落しているようです。これを解決するために、gradle.buildファイルに追加しました。 JPAを取得したとき、Spring-bootがすでにそれを処理していると思いましたが、私は間違っていました。これが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'
    

    }



    1. postgresでの動的テーブルパーティショニング

    2. 列タイプがnvarcharの場合、列値の合計とともにテーブルをピボットする

    3. SQL Server(T-SQL)で電子メールを送信するときに許容される添付ファイルのサイズを増やす方法

    4. PDOException SQLSTATE[HY000][2002]そのようなファイルまたはディレクトリはありません