SprringMV数据格式化注解

来源:互联网 发布:hp扫描仪软件 编辑:程序博客网 时间:2024/06/06 13:22

SpringMVC.xml里添加:

<mvc:annotation-driven ></mvc:annotation-driven>    
@DateTimeFormat(pattern="yyyy-MM-dd")  //时间格式化    private Date birth;
`@NumberFormat(pattern="#,###,###.#")//数字格式化格式    private Float salary;`

这样简单的注解就可以搞定从前台传过来的数据

阅读全文
0 0