Skip to content Skip to sidebar Skip to footer

Create Clob Property From Json

I have Entity imported like a Maven dependency, looks like this(simplified) @Entity public class Person extends Base { private String name; private Clob biography; //Gett

Solution 1:

Just use

@LobString biography

And in DDL for database initiate column as CLOB

Post a Comment for "Create Clob Property From Json"