Skip to content

Commit 8ee57ac

Browse files
committed
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
1 parent ce0a3d0 commit 8ee57ac

File tree

1 file changed

+0
-13
lines changed
  • spring-boot-project/spring-boot-docs/src/main/asciidoc

1 file changed

+0
-13
lines changed

spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1148,19 +1148,6 @@ work. To use the Jackson XML renderer, add the following dependency to your proj
11481148
</dependency>
11491149
----
11501150

1151-
You may also want to add a dependency on Woodstox. It is faster than the default StAX
1152-
implementation provided by the JDK and also adds pretty-print support and improved
1153-
namespace handling. The following listing shows how to include a dependency on
1154-
https://github.com/FasterXML/woodstox[Woodstox]:
1155-
1156-
[source,xml,indent=0,subs="verbatim,quotes,attributes"]
1157-
----
1158-
<dependency>
1159-
<groupId>org.codehaus.woodstox</groupId>
1160-
<artifactId>woodstox-core-asl</artifactId>
1161-
</dependency>
1162-
----
1163-
11641151
If Jackson's XML extension is not available, JAXB (provided by default in the JDK) is
11651152
used, with the additional requirement of having `MyThing` annotated as
11661153
`@XmlRootElement`, as shown in the following example:

0 commit comments

Comments
 (0)