【发布时间】:2018-08-10 17:29:58
【问题描述】:
我在尝试将 POST 请求中传递给 Spring 控制器的值从 String 反序列化为 OffsetDateTime 时遇到此异常。
这是我的例外:
Failed to convert value of type 'java.lang.String' to required type 'java.time.OffsetDateTime';
nested exception is org.springframework.core.convert.ConversionFailedException:
Failed to convert from type [java.lang.String] to
type [@org.springframework.web.bind.annotation.RequestParam java.time.OffsetDateTime]
for value '2018-03-02T14:12:50.789+01:00';
nested exception is java.lang.IllegalArgumentException:
Parse attempt failed for value [2018-03-02T14:12:50.789+01:00]
我使用的是最新版的Spring-Boot - 2.0.1.BUILD-SNAPSHOT
这是我的JacksonConfig.java
package com.divinedragon.jackson.config;
import static com.fasterxml.jackson.databind.DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES;
import static com.fasterxml.jackson.databind.DeserializationFeature.READ_UNKNOWN_ENUM_VALUES_AS_NULL;
import static com.fasterxml.jackson.databind.PropertyNamingStrategy.SNAKE_CASE;
import static com.fasterxml.jackson.databind.SerializationFeature.WRAP_ROOT_VALUE;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Primary;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.util.ISO8601DateFormat;
import com.fasterxml.jackson.datatype.jdk8.Jdk8Module;
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
import com.fasterxml.jackson.module.paramnames.ParameterNamesModule;
@Configuration
public class JacksonConfig {
@Bean(name = "jacksonConverter")
public MappingJackson2HttpMessageConverter jacksonConverter(final ObjectMapper objectMapper) {
final MappingJackson2HttpMessageConverter httpMessageConverter = new MappingJackson2HttpMessageConverter();
httpMessageConverter.setObjectMapper(objectMapper);
return httpMessageConverter;
}
@Bean
@Primary
public ObjectMapper objectMapper() {
final ObjectMapper mapper = new ObjectMapper();
mapper.enable(READ_UNKNOWN_ENUM_VALUES_AS_NULL);
mapper.disable(FAIL_ON_UNKNOWN_PROPERTIES);
mapper.disable(WRAP_ROOT_VALUE);
mapper.setDateFormat(new ISO8601DateFormat());
mapper.setPropertyNamingStrategy(SNAKE_CASE);
mapper.registerModule(new Jdk8Module());
mapper.registerModule(new JavaTimeModule());
mapper.registerModule(new ParameterNamesModule());
return mapper;
}
}
这是我的JacksonController.java,它是一个 Spring REST 控制器。
package com.divinedragon.jackson.controller;
import java.time.OffsetDateTime;
import java.util.Collections;
import java.util.Map;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class JacksonController {
@GetMapping(path = "/get")
public Map<String, OffsetDateTime> getDates() {
return Collections.singletonMap("createdAt", OffsetDateTime.now());
}
@PostMapping(path = "/post")
public Map<String, OffsetDateTime> postDates(@RequestParam("created_at") final OffsetDateTime createdAt) {
return Collections.singletonMap("createdAt", createdAt);
}
}
此应用程序运行,当我向 /get 端点发出请求时,我得到了使用 Jackson 正确序列化的日期值。
-> curl -s http://localhost:8080/get | python -m json.tool
{
"createdAt": "2018-03-02T14:12:50.789+01:00"
}
当我使用 /post 端点并传递日期值时,我得到了上述异常:
-> curl -s -X POST http://localhost:8080/post --data-urlencode 'created_at=2018-03-02T14:12:50.789+01:00' | python -m json.tool
{
"error": "Bad Request",
"message": "Failed to convert value of type 'java.lang.String' to required type 'java.time.OffsetDateTime'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@org.springframework.web.bind.annotation.RequestParam java.time.OffsetDateTime] for value '2018-03-02T14:12:50.789+01:00'; nested exception is java.lang.IllegalArgumentException: Parse attempt failed for value [2018-03-02T14:12:50.789+01:00]",
"path": "/post",
"status": 400,
"timestamp": "2018-03-02T13:15:38Z"
}
有人可以指导我如何使用 Jackson 反序列化将值转换为 OffsetDateTime?
【问题讨论】:
标签: spring spring-boot jackson spring-restcontroller jackson2