spring mvc如何将日期格式化

文章目录

  • 日期格式化
    • 项目结构
    • Controller代码
    • 在Controller中加入以下方法
    • 效果如图

日期格式化

项目结构

spring mvc如何将日期格式化_第1张图片

Controller代码

@Controller
@RequestMapping("/user")
public class UserController {
    @RequestMapping("/dateformat")
    @ResponseBody
    public String dateformat(Date date) {
        System.out.println(date);
        return "{'info':'dateformat'}";
    }
}

在Controller中加入以下方法

@InitBinder
public void initBinder(WebDataBinder binder) {
        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy/MM-dd");
        dateFormat.setLenient(false);
        binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, false));
}

效果如图

spring mvc如何将日期格式化_第2张图片

你可能感兴趣的:(Spring,Java,spring,mvc,java)