From 8ee57ac57488d79cd2ef7323da852dabcc96b590 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Fri, 23 Nov 2018 15:11:03 +0000 Subject: [PATCH] Remove redundant suggestion to add a dependency on Woodstox It's now a transitive dependency of jackson-dataformat-xml so there is no need to depend on it explicitly. Closes gh-15092 --- .../spring-boot-docs/src/main/asciidoc/howto.adoc | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc index c0e2ceb1faa..1d043f2d174 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc @@ -1148,19 +1148,6 @@ work. To use the Jackson XML renderer, add the following dependency to your proj ---- -You may also want to add a dependency on Woodstox. It is faster than the default StAX -implementation provided by the JDK and also adds pretty-print support and improved -namespace handling. The following listing shows how to include a dependency on -https://github.com/FasterXML/woodstox[Woodstox]: - -[source,xml,indent=0,subs="verbatim,quotes,attributes"] ----- - - org.codehaus.woodstox - woodstox-core-asl - ----- - If Jackson's XML extension is not available, JAXB (provided by default in the JDK) is used, with the additional requirement of having `MyThing` annotated as `@XmlRootElement`, as shown in the following example: