SpringBoot——String字符串格式化为LocalDate
程序员文章站
2022-03-23 23:22:03
...
@PostMapping("/edit")
public String edit(Long id, String name, @RequestParam @DateTimeFormat(pattern = "yyyy-MM-dd") LocalDate birthday) {
System.out.println(birthday);
Customer customer = customerService.getById(id);
customer.setBirthday(birthday);
customer.setName(name);
boolean b = customerService.updateById(customer);
if (b) {
return "redirect:/customer/list";
}
return null;
}
推荐阅读
-
C#中将long浮点数格式化为{H:min:s.ms}格式的字符串的方法
-
C#、.Net中把字符串(String)格式转换为DateTime类型的三种方法
-
C# string格式的日期时间字符串转为DateTime类型的方法
-
jsp页面中如何将时间戳字符串格式化为时间标签
-
Asp.net中将对象转化为JSON格式的字符串
-
C#实现String字符串转化为SQL语句中的In后接的参数详解
-
C#中将long浮点数格式化为{H:min:s.ms}格式的字符串的方法
-
C#实现把String字符串转化为SQL语句中的In后接的参数
-
Python字符串格式化f-string多种功能实现
-
python格式化字符串的三种方法(%,format,f-string)