Spring MVC GET請求接收Date類型參數

Controller方法定義

@GetMapping('/list-by-date')
ResponseBean listByUserIdAndDateRange(@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") Date fromDate) 
    System.out.println(fromDate)
}

請求

curl -X GET http://localhost/list-by-date?fromDate=2019-02-27 00:01:00
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章