服务器之家

服务器之家 > 正文

SpringBoot中自定义参数绑定步骤详解

时间:2021-03-31 13:21     来源/作者:江南一点雨

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

1.自定义参数转换器

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

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

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

2.配置转换器

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

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

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

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

服务端接口如下:

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

其中Employee中有一个名为birthday的属性,该属性的数据类型是一个Date

原文链接:http://blog.csdn.net/u012702547/article/details/79244688

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部