SpringMVC基础-自定义类型转换器

为什么需要自定义类型转换器

1)浏览器请求传到服务器的参数都是字符串类型,这其中绝大部分的参数类型的转化Spring框架都为我们提供了,但如日期类型中还是存在一些问题,前端传过来的2021/02/24是可以被解析的,但是2021-02-24就无法解析,所以这里需要自定义类型转换器

自定义类型转换器步骤

1)新建一个类继承Converter接口实现convert方法


import org.springframework.core.convert.converter.Converter;

import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;

/**
 * 类型转化 String 转 Date
 * Converter<源类型, 转换至类型>
 */
public class TypeConversionUtils implements Converter {

    /**
     *
     * @param s - 传入的字符串
     * @return
     */
    @Override
    public Date convert(String s) {
        if ("".equals(s)) {
            throw new RuntimeException("请传入请求参数");
        }
        DateFormat df = new SimpleDateFormat("yyyy-MM-dd");
        try {
            return df.parse(s);
        } catch (Exception e) {
            throw new RuntimeException("转换存在错误");
        }
    }
}

2)SpringMVC配置文件中注册ConversionServiceFactoryBean

  
  
    
    
      
        
      
    
  

  
  

你可能感兴趣的:(SpringMVC基础-自定义类型转换器)