解决springboot+mybatisplus返回时间格式带T

原因:我service实现类的代码是

@Override
	public Map queryDictPage(Map queryMap) {
		Map map = new HashMap<>();
		QueryWrapper wrapper = new QueryWrapper<>();
//        IPage iPage = basesMapper.selectPage(page, wrapper);
//        List> list = ConvertUtils.objectsToMaps(iPage.getRecords());
		Page page = new Page<>((Integer)queryMap.get("page"), (Integer)queryMap.get("limit"));
		IPage> iPage = basesMapper.queryDictPage(page, queryMap);
		
		map.put("code",0);
		map.put("msg","");
		map.put("count",iPage.getTotal());
		map.put("data",iPage.getRecords());
		return map;
	}

对,IPage page  是map,重page.records 中找到查询数据库返回的数据。其中crateTime是LocalDateTime类型

解决springboot+mybatisplus返回时间格式带T_第1张图片

而我最终返回的也是map(所以去实体类加

@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")这些是没用的。

)。

springboot版本是2.3.4.RELEASE,返回前端的时候也没有做处理,即使在applicaton.yml配置了

解决springboot+mybatisplus返回时间格式带T_第2张图片

也没效果。

大概是该版本没有考虑 LocalDateTime类型的转换,常用的时间类型,该配置是有效的。好了,大概就这样吧,不深入了解了,没兴趣。

解决办法:

1、在application.yml中配置(这个也得要,常用的date类型还是有效的)

spring:
  profiles:
    active: dev
  thymeleaf:
    cache: false
    prefix: classpath:/templates/
    suffix: .html
  jackson:
    date-format: yyyy-MM-dd HH:mm:ss
    time-zone: GMT+8

2、配置LocalDataTime的处理(感谢其他csdn作者提供,找不到你链接了)

package com.wms.config;

import com.fasterxml.jackson.datatype.jsr310.ser.LocalDateTimeSerializer;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.autoconfigure.jackson.Jackson2ObjectMapperBuilderCustomizer;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;

/**
 * 处理mybatisplus 转时间字段为LocalDateTime类型,而springboot2.3.4.RELEASE
 */
@Configuration
public class LocalDateTimeSerializerConfig {

    @Value("${spring.jackson.date-format}")
    private String pattern;

    @Bean
    public LocalDateTimeSerializer localDateTimeDeserializer() {
        return new LocalDateTimeSerializer(DateTimeFormatter.ofPattern(pattern));
    }

    @Bean
    public Jackson2ObjectMapperBuilderCustomizer jackson2ObjectMapperBuilderCustomizer() {
        return builder -> builder.serializerByType(LocalDateTime.class, localDateTimeDeserializer());
    }

}

你可能感兴趣的:(spring,boot,java,后端)