SpringMVC_类型转换器
一:系统提供的类型转换器 从前端页面提交的表单数据,提交到Controller中,Controller会根据我们在方法中定义的参数的类型来将数据类型自动转换 1:编写表单数据 <% @ page contentType = " text/html;charset=UTF-8 " language = " java " %> < html > < head > < title > Title </ title > </ head > < body > < form action ="/submit.do" method ="post" > 用户名: < input type ="text" name ="username" >< br > 年龄: < input type ="text" name ="age" >< br > < input type ="submit" value ="提交" > </ form > </ body > </ html > 2:Controller // Controller中的方法会自动将age转为int类型 // 该转换是通过SpringMvc的默认类型转换器来实现的,但有些类型是无法通过该转换器进行转换的,例如日期类型 @Controller public class newController{ @RequestMapping( "