springmvc日期转换两种方式
程序员文章站
2022-05-24 11:39:06
...
如果不做特殊处理,springmvc是无法直接将前端输入的日期字符串转化为java.util.Date类型的。下面是两种配置springmvc可以将前端输入的日期字符串转化为java.util.Date类型的方式。
一、当前类有效
二、全局有效
创建CustomDateEdtor类:
在spingmvc.xml文件中配置如下代码:
重启服务器生效。
一、当前类有效
package cn.smallbug.core.web; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; import org.springframework.beans.propertyeditors.CustomDateEditor; import org.springframework.web.bind.WebDataBinder; import org.springframework.web.bind.support.WebBindingInitializer; import org.springframework.web.context.request.WebRequest; //<1> 实现WebBindingInitializer接口 @Controller @Scope("prototype") public class CustomDateEdtor implements WebBindingInitializer { // <2> 实现 initBinder 方法,添加@InitBinder注解 @InitBinder public void initBinder(WebDataBinder binder, WebRequest request) { // <3> 定义转换格式 DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //true代表允许输入值为空 binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true)); } }
二、全局有效
创建CustomDateEdtor类:
package cn.smallbug.core.web; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; import org.springframework.beans.propertyeditors.CustomDateEditor; import org.springframework.web.bind.WebDataBinder; import org.springframework.web.bind.support.WebBindingInitializer; import org.springframework.web.context.request.WebRequest; //<1> 实现WebBindingInitializer接口 public class CustomDateEdtor implements WebBindingInitializer { // <2> 实现 initBinder 方法 @Override public void initBinder(WebDataBinder binder, WebRequest request) { // <3> 定义转换格式 DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //true代表允许输入值为空 binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true)); } }
在spingmvc.xml文件中配置如下代码:
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"> <property name="webBindingInitializer"> <bean class="cn.smallbug.core.web.CustomDateEdtor" /> </property> </bean>
重启服务器生效。
上一篇: 重启阿里云ECS服务器实例
下一篇: MySQL Cluster写入效率测试
推荐阅读
-
是什么编码 unicode两种编码方式与中文的转换
-
解决springmvc关于前台日期作为实体类对象参数类型转换错误的问题
-
springmvc和js前端的数据传递和接收方式(两种)
-
解决springmvc关于前台日期作为实体类对象参数类型转换错误的问题
-
详解Go开发Struct转换成map两种方式比较
-
springmvc 获取@Requestbody转换的异常处理方式
-
WPS表格中使用text函数输入英文星期日期的两种方式
-
SpringMVC自定义日期转换器不起作用,报400错误,Failed to convert value of type xxx to required type xxx
-
spring boot @ResponseBody转换JSON 时 Date 类型处理方法,Jackson和FastJson两种方式。
-
SpringMVC @RequestBody Date类型的Json转换方式