1. 程式人生 > >spring mvc開發接收日期欄位表單提交,自動轉換成Date型別報錯,解決辦法

spring mvc開發接收日期欄位表單提交,自動轉換成Date型別報錯,解決辦法

User中有birthday(Date)屬性,使用者註冊的時候,選擇日期即可,然後提交表單,可spring mvc 報錯,意思是不能把字串轉為Date型別的。如果是strtus的話,壓根不是問題,怎麼到spring mvc就不行了呢,可能有好的解決辦法

方法一:實體類中加日期格式化註解

    @DateTimeFormat(pattern = "yyyy-MM-dd")  
    private Date birthday;  

如上,在對應的屬性上,加上指定日期格式的註解,本人親自測試過,輕鬆解決問題!

方法二:控制器Controller中加入一段資料繫結程式碼

   /*將字串轉換為Date類
    @InitBinder
    public void initBinder(WebDataBinder binder, WebRequest request) {
        //轉換日期格式
        DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
//        註冊自定義的編輯器
        binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
        
    }*/


方法三:實現一個全域性日期型別轉換器並進行配置

設定日期轉換類

package nuc.ss.wlb.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;

public class CustomDateEdtor implements WebBindingInitializer {

    
    public void initBinder(WebDataBinder binder, WebRequest request) {
        // TODO Auto-generated method stub
        //轉換日期格式
        DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        
        binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
    }

}

並在spingMVC配置檔案進行配置

<!-- 配置全域性日期轉換器 -->
    <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
        <property name="webBindingInitializer">    
            <bean class="nuc.ss.wlb.core.web.CustomDateEdtor"/>
        </property>
    </bean>


方法四:jsp頁面配置或Freemark中配置

<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>   
<fmt:formatDate value="${job.jobtime }" pattern="yyyy-MM-dd HH:mm:ss"/>