我在使用RestAssured的项目中有GSON和Jackson,我想使用GSON.官方文档没有提供明确的例子.我尝试了几个配置,但似乎没有用.这是我的配置,我错过了什么?
RestAssured.config = RestAssuredConfig.config()
.decoderConfig(new DecoderConfig("UTF-8"))
.encoderConfig(new EncoderConfig("UTF-8","UTF-8"))
.objectMapperConfig(new ObjectMapperConfig(GSON));
最佳答案
原文链接:https://www.f2er.com/java/437486.html