正常情况下,前端传递来的参数都能直接被SpringMVC接收,但是也会遇到一些特殊情况,比如Date对象,当我的前端传来的一个日期时,就需要服务端自定义参数绑定,将前端的日期进行转换。自定义参数绑定也很简单,分两个步骤:

    1.自定义参数转换器

    自定义参数转换器实现Converter接口,如下:

    1. public class DateConverter implements Converter<String,Date> {
    2. private SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
    3. @Override
    4. public Date convert(String s) {
    5. if ("".equals(s) || s == null) {
    6. return null;
    7. }
    8. try {
    9. return simpleDateFormat.parse(s);
    10. } catch (ParseException e) {
    11. e.printStackTrace();
    12. }
    13. return null;
    14. }
    15. }

    convert方法接收一个字符串参数,这个参数就是前端传来的日期字符串,这个字符串满足yyyy-MM-dd格式,然后通过SimpleDateFormat将这个字符串转为一个Date对象返回即可。

    2.配置转换器

    自定义WebMvcConfig继承WebMvcConfigurerAdapter,在addFormatters方法中进行配置:

    1. @Configuration
    2. public class WebMvcConfig extends WebMvcConfigurerAdapter {
    3. @Override
    4. public void addFormatters(FormatterRegistry registry) {
    5. registry.addConverter(new DateConverter());
    6. }
    7. }

    OK,如上两步之后,我们就可以在服务端接收一个前端传来的字符串日期并将之转为Java中的Date对象了,前端日期控件如下:

    1. <el-date-picker
    2. v-model="emp.birthday"
    3. size="mini"
    4. value-format="yyyy-MM-dd HH:mm:ss"
    5. style="width: 150px"
    6. type="date"
    7. placeholder="出生日期">
    8. </el-date-picker>

    服务端接口如下:

    1. @RequestMapping(value = "/emp", method = RequestMethod.POST)
    2. public RespBean addEmp(Employee employee) {
    3. if (empService.addEmp(employee) == 1) {
    4. return new RespBean("success", "添加成功!");
    5. }
    6. return new RespBean("error", "添加失败!");
    7. }

    其中Employee中有一个名为birthday的属性,该属性的数据类型是一个Date,源码我就不贴了,小伙伴直接在本项目源码中查看即可。