這篇文章主要介紹“springmvc中怎么對數(shù)據(jù)進行保存以及日期參數(shù)的保存過程解析”,在日常操作中,相信很多人在springmvc中怎么對數(shù)據(jù)進行保存以及日期參數(shù)的保存過程解析問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”springmvc中怎么對數(shù)據(jù)進行保存以及日期參數(shù)的保存過程解析”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
10年積累的成都做網(wǎng)站、網(wǎng)站建設經(jīng)驗,可以快速應對客戶對網(wǎng)站的新想法和需求。提供各種問題對應的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡服務。我雖然不認識你,你也不認識我。但先網(wǎng)站設計后付款的網(wǎng)站建設流程,更有玉溪免費網(wǎng)站建設讓你可以放心的選擇與我們合作。
1.在Controller類中接受傳入的日期類型的參數(shù)時
@RequestMapping("todate.do") public String todate(Date date) { System.out.println(date); return "list"; } @InitBinder public void initBinder(ServletRequestDataBinder binder){ //只要網(wǎng)頁中傳來的數(shù)據(jù)格式為yyyy-MM-dd 就會轉(zhuǎn)化為Date類型 binder.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd"), true)); }
2.當要傳入多個參數(shù)時
@RequestMapping("list2.do") public String list2(Users users ) { System.out.println(users); return "list"; } @InitBinder public void initBinder(ServletRequestDataBinder binder){ //只要網(wǎng)頁中傳來的數(shù)據(jù)格式為yyyy-MM-dd 就會轉(zhuǎn)化為Date類型 binder.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd"), true)); }
Controller數(shù)據(jù)保存
保存至request里
(1)ModelAndView
@RequestMapping("aaa.do") public ModelAndView index() { ModelAndView mv = new ModelAndView(); mv.setViewName("index"); mv.addObject("name","張三"); return mv; }
(2)Model
@RequestMapping("aaa.do") public String index(Model model) { model.addAttribute("name", "李四"); return "index"; }
(3)map
@RequestMapping("aaa.do") public String index(Mapmap) { map.put("name", "222"); return "index"; }
(4)request
@RequestMapping("list.do") public String list(HttpServletRequest request) { request.setAttribute("name","wang"); return "index2"; }
保存至session里
@RequestMapping("list.do") public String list(HttpSession session) { session.setAttribute("name","wang"); return "index2"; }
保存至application里
@RequestMapping("list.do") public String list(HttpSession session) { session.getServletContext().setAttribute("name","wang"); return "index2"; }
到此,關(guān)于“springmvc中怎么對數(shù)據(jù)進行保存以及日期參數(shù)的保存過程解析”的學習就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
網(wǎng)頁名稱:springmvc中怎么對數(shù)據(jù)進行保存以及日期參數(shù)的保存過程解析
分享鏈接:http://weahome.cn/article/pjiscp.html