Method org.postgresql.jdbc.PgConnection.createClob() is not yet implemented

前端 未结 8 2163
迷失自我
迷失自我 2020-12-12 23:25

How can I solve this error:

java.lang.reflect.InvocationTargetException: null
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_1         


        
8条回答
  •  北荒
    北荒 (楼主)
    2020-12-13 00:02

    spring:      
      jpa:
        properties:
          hibernate:
            temp:
              use_jdbc_metadata_defaults: false
            jdbc:
              lob:
                non_contextual_creation: true
    

    use_jdbc_metadata_defaults: false or non_contextual_creation: true two items work fine

提交回复
热议问题