SpringMvc中将请求数据中的字符串转换成Date日期格式的数据

1.定义一个类实现Converter接口,并且实现该接口的方法

//利用泛型将字符串类型转为日期类型,第一个参数:表示要转换的字符串 ,第二个参数:要转换到的类型
public class CostomDateConvert implements Converter{

    @Override
    public Date convert(String info) {
        // TODO Auto-generated method stub
        if (info == null || info.isEmpty()) {
            return null;
        }
//      定义一个数组保存支持的格式
        SimpleDateFormat[] simpleDateFormats = new SimpleDateFormat[] {
            new SimpleDateFormat("yyyy-MM-dd"),
            new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"),
            new SimpleDateFormat("yyyy/MM/dd"),
        };
        for (SimpleDateFormat simpleDateFormat : simpleDateFormats) {
            try {
                return simpleDateFormat.parse(info);
            } catch (ParseException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
                continue;
            }
        }
        return null;
    }
}

2.在spring-mvc.xml中设置转换器


         
            
                
                    
                    
                
            
         

3.并且在spring-mvc.xml中的mvc:annotation-driven中指定上面设置的转换器


        

你可能感兴趣的:(SpringMvc中将请求数据中的字符串转换成Date日期格式的数据)