报错信息
未能将‘ java.lang.string’类型的属性值转换为‘ po.endtime’属性所需的类型‘ java.util.date’;
嵌套异常为 org.springwork.core.convert.convert.converversionfailedexception:
未能将[ java.lang.string ]类型转换为[@org ]类型。
值“2022-03-30”的
springframework.format.annotation.datetimformat java.util.date;
嵌套异常是
java.lang.illegalargumentexception: 值的解析尝试失败[2022-03-30]
"JSON parse error: Cannot deserialize value of type `java.time.LocalDateTime` from String "2022-02-28T16:12:00.000Z": Failed to deserialize java.time.LocalDateTime:
(java.time.format.DateTimeParseException) Text '2022-02-28T16:12:00.000Z' could not be parsed at index 10;
nested exception is
com.fasterxml.jackson.databind.exc.InvalidFormatException: Cannot deserialize value of type `java.time.LocalDateTime` from String "2022-02-28T16:12:00.000Z": Failed to
deserialize java.time.LocalDateTime: (java.time.format.DateTimeParseException) Text '2022-02-28T16:12:00.000Z' could not be parsed at index 10
at [Source: (org.springframework.util.StreamUtils$NonClosingInputStream);
line: 1, column: 171] (through reference chain:
com.suzui.homework.entity.Homework["hbegindate"])"
加上@DateTimeFormat注解之后依然失败。
文章图片
解决办法 使用fastjson替换springboot原本的jackson
添加依赖
文章图片
编写配置类
【BUG小王子|String转Date问题】配置类中需要注意设置的日期格式
文章图片
import com.alibaba.fastjson.serializer.SerializerFeature;
import com.alibaba.fastjson.support.config.FastJsonConfig;
import com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.MediaType;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.List;
@Configuration
@EnableWebMvc // 必须要有这个注解,否则报错
public class WebConfig implements WebMvcConfigurer {
@Override
public void configureMessageConverters(List> converters) {
FastJsonHttpMessageConverter fastJsonConverter = new FastJsonHttpMessageConverter();
FastJsonConfig config = new FastJsonConfig();
config.setCharset(StandardCharsets.UTF_8);
config.setDateFormat("yyyy-MM-dd HH:mm:ssS");
config.setSerializerFeatures(SerializerFeature.WriteMapNullValue);
fastJsonConverter.setFastJsonConfig(config);
List list = new ArrayList<>();
list.add(MediaType.APPLICATION_JSON);
fastJsonConverter.setSupportedMediaTypes(list);
converters.add(fastJsonConverter);
}
}
推荐阅读
- java|Shiro进阶(四)Shiro之RememberMe
- Spring|Spring Boot 中实现跨域的 5 种方式
- JavaEE之SSM|JavaEE之SSM框架整合
- java|整合SSM框架全步骤
- SSM整合的企业权限管理系统
- RabbitMQ|消息中间件RabbitMQ(五)——实现RPC调用
- 分布式|MQ介绍,RabbitMQ在SpringAMQP中的使用
- java|SpringSecurity安全性框架详解
- Java|某程序员在网吧敲代码,出类拔萃,网友(为何我被打的却是我)