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.
1 parent 78802d4 commit 946fc39Copy full SHA for 946fc39
spring-web/src/main/java/org/springframework/http/codec/xml/Jaxb2XmlDecoder.java
@@ -82,6 +82,11 @@ public Jaxb2XmlDecoder() {
82
super(MimeTypeUtils.APPLICATION_XML, MimeTypeUtils.TEXT_XML);
83
}
84
85
+ /**
86
+ * Create a {@code Jaxb2XmlDecoder} with the specified MIME types.
87
+ * @param supportedMimeTypes supported MIME types
88
+ * @since 5.1.9
89
+ */
90
public Jaxb2XmlDecoder(MimeType... supportedMimeTypes) {
91
super(supportedMimeTypes);
92
0 commit comments