JPA操作PgSQL的JSON类型(org.postgresql.util.PSQLException: ERROR: column xxx is of type json问题)
遇到org.postgresql.util.PSQLException: ERROR: column xxx is of type json问题
可以再jdbc连接后面增加stringtype=unspecified来把JSON类型当STRING类型存储
jdbc:postgresql://localhost:5432/dbname?stringtype=unspecified