हां, यह है, लेकिन आपको पोस्टग्रेस विशिष्ट एपीआई का उपयोग करने की आवश्यकता है। ऊपर दिए गए कोड में आपको से/से विधियों को निम्नलिखित से बदलना होगा:
@Override
public ObjectNode from(Object databaseObject) {
if (databaseObject == null) { return null; }
try {
PGobject dbo = (PGobject) databaseObject;
return mapper.readValue(dbo.getValue(), ObjectNode.class);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
@Override
public Object to(ObjectNode userObject) {
if (userObject == null) { return null; }
try {
PGobject dbo = new PGobject();
dbo.setType("json");
dbo.setValue(mapper.writeValueAsString(userObject));
return dbo;
} catch (JsonProcessingException|SQLException e) {
throw new RuntimeException(e);
}
}