使用 Spring Boot webclient 反序列化 OffsetDateTime

Posted

技术标签:

【中文标题】使用 Spring Boot webclient 反序列化 OffsetDateTime【英文标题】:Deserialising OffsetDateTime with Springboot webclient 【发布时间】:2021-04-10 05:56:54 【问题描述】:

在为我的 web 服务编写测试用例时,我遇到了与 OffsetDateTimeStamp 相关的问题。当我从浏览器测试时,它会给出正确的响应,但是在编写测​​试用例时它没有显示偏移量,因此它失败了。

@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class TestControllerTest 

    @LocalServerPort
    private int port;
    private WebClient client;
    
    @Test
    public void test() 
        Person person = new Person();
        person.setId(1);
        person.setBirthDate(OffsetDateTime.now());
        person.setMobile(9090909090L);
        person.setName("Tempo");
        client = WebClient.create("http://localhost:"+port);
        Person response = client.post().uri("/test1")
                .contentType(MediaType.APPLICATION_JSON)
                .accept(MediaType.APPLICATION_JSON)
                .body(BodyInserters.fromValue(person))
                .retrieve()
                .bodyToMono(Person.class)
                .block();
        
        Assertions.assertEquals(person.getBirthDate(), response.getBirthDate());
    

控制器代码

@RestController
public class TestController 

    @PostMapping("/test1")
    public Mono<Person> test1(@RequestBody Person person) 
        System.out.println(person.getBirthDate());
        return Mono.just(person);
    

邮件申请代码

@SpringBootApplication
public class TestAppApplication 

    public static void main(String[] args) 
        SpringApplication.run(TestAppApplication.class, args);
    

    @Bean
    public Module javaTimeModule() 
        return new JavaTimeModule();
    

    @Bean
    public Jackson2ObjectMapperBuilderCustomizer jacksonObjectMapperCustomization() 
        return jacksonObjectMapperBuilder -> jacksonObjectMapperBuilder.timeZone(TimeZone.getDefault());
    

Person.java

public class Person 
    
    private int id;
    private String name;
    private long mobile;
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSXXX")
    private OffsetDateTime birthDate;
    public Person() 

application.properties

spring.jackson.serialization.write-dates-as-timestamps=false
spring.jackson.deserialization.adjust-dates-to-context-time-zone=false
spring.jackson.serialization.write-dates-with-zone-id=true

测试用例的输出

org.opentest4j.AssertionFailedError: 
Expected :2021-01-04T17:43:51.817+05:30
Actual   :2021-01-04T12:13:51.817Z
<Click to see difference>

【问题讨论】:

【参考方案1】:

您的属性birthDate 在您的Person 实体类中是如何定义的?您需要在那里定义格式。你可以这样做:

@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSZ")
private OffsetDateTime birthDate;
...
public OffsetDateTime getBirthDate() 
    return birthDate;

在这个问题的答案中查看更多详细信息:Spring Data JPA - ZonedDateTime format for json serialization

【讨论】:

我添加了实体类。我的有点不同,但两者都不起作用。 尝试改变你的断言:而不是 Assertions.assertEquals(person.getBirthDate(), response.getBirthDate());试试 Assertions.assertTrue((person.getBirthDate().equals(response.getBirthDate))

以上是关于使用 Spring Boot webclient 反序列化 OffsetDateTime的主要内容,如果未能解决你的问题,请参考以下文章

禁用 Spring Boot Webclient 日志

Spring Boot响应式WebClient调用遗留端点

Spring Boot:如何使用 WebClient 而不是 RestTemplate 来执行非阻塞和异步调用

使用 Spring Boot webclient 反序列化 OffsetDateTime

Spring boot 2 WebClient在订阅者中获取上下文参数

如何使用 Spring Boot WebClient 收集分页 API 响应?