转换器:converter
格式化:Format
在[01-06、校验器](https://github.com/someus/another-tutorial-about-java-web/blob/master/01-06.md)、[01-09、文件上传](https://github.com/someus/another-tutorial-about-java-web/blob/master/01-09.md)中的例子中都使用了数据绑定 (将表单数据绑定到bean对象中),例如:
~~~
@RequestMapping(value = "/output")
public String output(Person person, Model model) {
model.addAttribute("person", person);
return "hello/output";
}
~~~
表单的数据都是String类型,如果我们的bean类中的属性是其他类型,例如Date、int,这时候就需要写一个工具,将String转换成Date、int。
这就是转换器与格式化做的事情:类型转换。字符串转换成数字类型是内置的。
**资料:**
[8\. Validation, Data Binding, and Type Conversion](http://docs.spring.io/spring-framework/docs/current/spring-framework-reference/html/validation.html)
[Spring MVC request parameter conversion with minimal configuration](http://unitstep.net/blog/2013/04/07/spring-mvc-request-parameter-conversion-with-minimal-configuration/)
[Introduction to Spring Converters and Formatters](http://www.javabeat.net/introduction-to-spring-converters-and-formatters/)转换器:converter
格式化:Format
在[01-06、校验器](https://github.com/someus/another-tutorial-about-java-web/blob/master/01-06.md)、[01-09、文件上传](https://github.com/someus/another-tutorial-about-java-web/blob/master/01-09.md)中的例子中都使用了数据绑定 (将表单数据绑定到bean对象中),例如:
~~~
@RequestMapping(value = "/output")
public String output(Person person, Model model) {
model.addAttribute("person", person);
return "hello/output";
}
~~~
表单的数据都是String类型,如果我们的bean类中的属性是其他类型,例如Date、int,这时候就需要写一个工具,将String转换成Date、int。
这就是转换器与格式化做的事情:类型转换。字符串转换成数字类型是内置的。
**资料:**
[8\. Validation, Data Binding, and Type Conversion](http://docs.spring.io/spring-framework/docs/current/spring-framework-reference/html/validation.html)
[Spring MVC request parameter conversion with minimal configuration](http://unitstep.net/blog/2013/04/07/spring-mvc-request-parameter-conversion-with-minimal-configuration/)
[Introduction to Spring Converters and Formatters](http://www.javabeat.net/introduction-to-spring-converters-and-formatters/)
- JSP & Servlet
- 00-00、序
- 00-01、相关软件的安装
- 00-02、理解HTTP
- 00-03、从JSP开始
- 00-04、理解Servlet
- 00-05、过滤器与监听器
- 00-06、使用velocity模板引擎
- 00-07、使用数据库连接池
- 00-08、Tomcat的运行机制
- Spring MVC
- 01-00、Spring与依赖注入
- 01-01、Spring与面向切面编程
- 01-02、使用Spring MVC构建Hello World
- 01-03、JdbcTemplate
- 01-04、基于注解的URL映射
- 01-05、JSON
- 01-06、校验器
- 01-07、国际化
- 01-08、拦截器
- 01-09、文件上传
- 01-10、转换器与格式化
- Book
- Online Tutorial
- Q & A
- Learn More
- Supplement