How to access jOOQ generated Routine's field as value by using Custom Converter?

前端 未结 1 530
無奈伤痛
無奈伤痛 2021-01-26 08:33

I\'m having an issue with accessing field of generated Routine from PL/pgSQL user-defined function (which returns JSON data type as a result) a

相关标签:
1条回答
  • 2021-01-26 08:51

    The first part of your question is answered here. In your updates, this is not valid Java code:

    org.jooq.JSON.class::valueOf
    

    You meant to write this:

    org.jooq.JSON::valueOf
    
    0 讨论(0)
提交回复
热议问题