From 2b2186781b71de6319a517a57a7d4f48ef065edf Mon Sep 17 00:00:00 2001 From: Sebastien Deleuze Date: Thu, 7 May 2015 10:23:01 +0200 Subject: [PATCH] Fix JSON Views code sample in the documentation Issue: SPR-12994 --- src/asciidoc/integration.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/asciidoc/integration.adoc b/src/asciidoc/integration.adoc index bdd0afa68d..d6f812d814 100644 --- a/src/asciidoc/integration.adoc +++ b/src/asciidoc/integration.adoc @@ -1258,9 +1258,9 @@ to serialize only a subset of the object properties. For example: [source,java,indent=0] [subs="verbatim,quotes"] ---- - JacksonSerializationValue jsv = new JacksonSerializationValue(new User("eric", "7!jd#h23"), - User.WithoutPasswordView.class); - HttpEntity entity = new HttpEntity(jsv); + MappingJacksonValue value = new MappingJacksonValue(new User("eric", "7!jd#h23")); + value.setSerializationView(User.WithoutPasswordView.class); + HttpEntity entity = new HttpEntity(value); String s = template.postForObject("http://example.com/user", entity, String.class); ----