Is it possible to insert json into a postgresql json column using the NamedParameterJDBCTemplate class in SpringFramework and I am getting a PSQLException: No hstore extension installed. From this I gather that the NamedParameterJDBCTemplateis trying to store the value as hstore.
Is there a way I can tell the NamedParameterJDBCTemplate to insert the value into the query as json?
The value is stored in java as a Map<String, String>