在 spring-boot 中使用网络客户端解析 text/html 对 xml 的响应

Parse text/html response to xml with web-client in spring-boot

我正在调用内容类型为“text/html”的 API returns xml 响应 当我尝试解析 xml class 中的响应时,我收到错误消息:

Content type 'text/html' not supported for bodyType=Response

API

的实际响应
<?xml version='1.0' encoding='UTF-8'?>
<response version="1.0">
    <responseCode>200</responseCode>
    <responseMsg>some message</responseMsg>
</response>

我添加了自定义编解码器来解决这个问题,但不知何故它不起作用。当我补充说我得到 json 解码错误时:

JSON decoding error: Unexpected character ('<' (code 60)): expected a valid value (number, String, array, object, 'true', 'false' or 'null')

这是我的代码: API 打电话

return webClient.get()
            .uri { builder ->
                builder.path("/apiPath")
                    .queryParams(queryParams)
                    .build()
            }
            .retrieve()
            .onStatus({ it != HttpStatus.OK }) {
                RuntimeException("").toMono()
            }
            .bodyToMono(Response::class.java)
            .doOnError {
                logger.error { "Error" }
            }.block()

网络客户端生成器

    @Bean
    fun webClient(): WebClient = WebClient.builder()
        .exchangeStrategies(ExchangeStrategies.builder().codecs(this::acceptedCodecs).build())
        .baseUrl("apiUrl")
        .build()

    private fun acceptedCodecs(clientCodecConfigurer: ClientCodecConfigurer) {
        clientCodecConfigurer.customCodecs().register(Jackson2JsonEncoder(ObjectMapper(), TEXT_HTML))
        clientCodecConfigurer.customCodecs().register(Jackson2JsonEncoder(ObjectMapper(), TEXT_HTML))
    }

回应class

@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "response")
data class Response(
    @XmlElement
    val responseCode: String = "2000",
    @XmlElement
    val responseMsg: String = "OK",
)

我认为添加自定义编解码器部分需要修改,但我不知道到底需要更改什么。 请让我知道我哪里做错了。谢谢。

编辑: 我试图像这样

修改 XML 的 exchangeStrategies
clientCodecConfigurer.defaultCodecs().jaxb2Decoder(Jaxb2XmlDecoder())
clientCodecConfigurer.defaultCodecs().jaxb2Encoder(Jaxb2XmlEncoder())

但得到同样的错误

message : Content type 'text/html' not supported for bodyType=Response

Jaxb2XmlDecoder 默认构造函数默认没有“text/html”。您需要将其传递给使用 Jaxb2XmlDecoder(MimeType... supportedMimeTypes) 例如:

clientCodecConfigurer.defaultCodecs().jaxb2Decoder(
Jaxb2XmlDecoder(MimeTypeUtils.APPLICATION_XML, MimeTypeUtils.TEXT_XML, MediaType("application", "*+xml"), MimeTypeUtils.TEXT_HTML))