摘要:
SpringMVC绑定参数之类型转换有三种方式: 1. 实体类中加日期格式化注解 @DateTimeFormat(pattern="yyyy-MM-dd hh:MM") private Date creationTime; 2.在Controller类的方法中加入一段代码 SpringMVC绑定参数 阅读全文
摘要:
1. httpservletrequest request 用注解@RequestParam绑定请求参数 用注解@RequestParam绑定请求参数a到变量a 当请求参数a不存在时会有异常发生,可以通过设置属性required=false解决, 例如: @RequestParam(value="a 阅读全文