Skip to content

Instantly share code, notes, and snippets.

@spati-java
Created September 14, 2018 14:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spati-java/0421e11d048b3464956f17245ef32032 to your computer and use it in GitHub Desktop.
Save spati-java/0421e11d048b3464956f17245ef32032 to your computer and use it in GitHub Desktop.
public String updateProfile(ProfileDocument document) throws Exception {
ProfileDocument resultDocument = findById(document.getId());
UpdateRequest updateRequest = new UpdateRequest(
INDEX,
TYPE,
resultDocument.getId());
Map<String, Object> documentMapper =
objectMapper.convertValue(document, Map.class);
updateRequest.doc(documentMapper);
UpdateResponse updateResponse =
client.update(updateRequest, RequestOptions.DEFAULT);
return updateResponse
.getResult()
.name();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment