欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

这个 org.postgresql.jdbc.PgConnection.createClob() 方法尚未被实作

程序员文章站 2022-04-21 23:49:17
...

使用Springboot连接Postgresql 使用JPA

版本:

        spring-boot:2.1.0.RELEASE

        org.postgresql.postgresql:42.2.5

分析:

    跟踪代码找到:LobCreatorBuilderImpl:41

boolean isNonContextualLobCreationRequired = ConfigurationHelper.getBoolean("hibernate.jdbc.lob.non_contextual_creation", configValues);
        if (isNonContextualLobCreationRequired) {
            LOG.disablingContextualLOBCreation("hibernate.jdbc.lob.non_contextual_creation");
            return false;
        } else if (jdbcConnection == null) {
            LOG.disablingContextualLOBCreationSinceConnectionNull();
            return false;
        } 

    只需配置参数:hibernate.jdbc.lob.non_contextual_creation

解决方案:

    1、在 application.properties 配置:

spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true

    2、在 application.yml 同级目录下添加 hibernate.properties 文件,并配置:

hibernate.jdbc.lob.non_contextual_creation=true