We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c32299f + 235858e commit 2eba010Copy full SHA for 2eba010
spring-web/src/main/java/org/springframework/http/codec/xml/Jaxb2XmlDecoder.java
@@ -91,6 +91,10 @@ public Jaxb2XmlDecoder() {
91
super(MimeTypeUtils.APPLICATION_XML, MimeTypeUtils.TEXT_XML);
92
}
93
94
+ public Jaxb2XmlDecoder(MimeType... supportedMimeTypes) {
95
+ super(supportedMimeTypes);
96
+ }
97
+
98
99
/**
100
* Configure a processor function to customize Unmarshaller instances.
0 commit comments