您好,登錄后才能下訂單哦!
這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)Spring中@ModelAttribute注解如何使用,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
1.@ModelAttribute注釋方法
例子(1),(2),(3)類似,被@ModelAttribute注釋的方法會在此controller每個(gè)方法執(zhí)行前被執(zhí)行,因此對于一個(gè)controller映射多個(gè)URL的用法來說,要謹(jǐn)慎使用。
(1)@ModelAttribute注釋void返回值的方法
@Controller public class HelloWorldController { @ModelAttribute public void populateModel(@RequestParam String abc, Model model) { model.addAttribute("attributeName", abc); } @RequestMapping(value = "/helloWorld") public String helloWorld() { return "helloWorld"; } }
這個(gè)例子,在獲得請求/helloWorld 后,populateModel方法在helloWorld方法之前先被調(diào)用,它把請求參數(shù)(/helloWorld?abc=text)加入到一個(gè)名為attributeName的model屬性中,在它執(zhí)行后 helloWorld被調(diào)用,返回視圖名helloWorld和model已由@ModelAttribute方法生產(chǎn)好了。
這個(gè)例子中model屬性名稱和model屬性對象有model.addAttribute()實(shí)現(xiàn),不過前提是要在方法中加入一個(gè)Model類型的參數(shù)。
當(dāng)URL或者post中不包含次參數(shù)時(shí),會報(bào)錯,其實(shí)不需要這個(gè)方法,完全可以把請求的方法寫成,這樣缺少此參數(shù)也不會出錯
@RequestMapping(value = "/helloWorld") public String helloWorld(String abc) { return "helloWorld"; }
2)@ModelAttribute注釋返回具體類的方法
@ModelAttribute public Account addAccount(@RequestParam String number) { return accountManager.findAccount(number); }
這種情況,model屬性的名稱沒有指定,它由返回類型隱含表示,如這個(gè)方法返回Account類型,那么這個(gè)model屬性的名稱是account。
這個(gè)例子中model屬性名稱有返回對象類型隱含表示,model屬性對象就是方法的返回值。它無須要特定的參數(shù)。
(3)@ModelAttribute(value="")注釋返回具體類的方法
@Controller public class HelloWorldController { @ModelAttribute("attributeName") public String addAccount(@RequestParam String abc) { return abc; } @RequestMapping(value = "/helloWorld") public String helloWorld() { return "helloWorld"; } }
這個(gè)例子中使用@ModelAttribute注釋的value屬性,來指定model屬性的名稱。model屬性對象就是方法的返回值。它無須要特定的參數(shù)。
(4)@ModelAttribute和@RequestMapping同時(shí)注釋一個(gè)方法
@Controller public class HelloWorldController { @RequestMapping(value = "/helloWorld.do") @ModelAttribute("attributeName") public String helloWorld() { return "hi"; } }
這時(shí)這個(gè)方法的返回值并不是表示一個(gè)視圖名稱,而是model屬性的值,視圖名稱由RequestToViewNameTranslator根據(jù)請求"/helloWorld.do"轉(zhuǎn)換為邏輯視圖helloWorld。
Model屬性名稱有@ModelAttribute(value=””)指定,相當(dāng)于在request中封裝了key=attributeName,value=hi。
2.@ModelAttribute注釋一個(gè)方法的參數(shù)
(1)從model中獲取
@Controller public class HelloWorldController { @ModelAttribute("user") public User addAccount() { return new User("jz","123"); } @RequestMapping(value = "/helloWorld") public String helloWorld(@ModelAttribute("user") User user) { user.setUserName("jizhou"); return "helloWorld"; } }
在這個(gè)例子里,@ModelAttribute("user") User user注釋方法參數(shù),參數(shù)user的值來源于addAccount()方法中的model屬性。
此時(shí)如果方法體沒有標(biāo)注@SessionAttributes("user"),那么scope為request,如果標(biāo)注了,那么scope為session
(2)從Form表單或URL參數(shù)中獲?。▽?shí)際上,不做此注釋也能拿到user對象)
@ModelAttribute具有如下三個(gè)作用:
?、俳壎ㄕ埱髤?shù)到命令對象:放在功能處理方法的入?yún)⑸蠒r(shí),用于將多個(gè)請求參數(shù)綁定到一個(gè)命令對象,從而簡化綁定流程,而且自動暴露為模型數(shù)據(jù)用于視圖頁面展示時(shí)使用。
其實(shí) @ModelAttribute 此處對于供視圖頁面展示來說與 model.addAttribute("attributeName", abc); 功能類似。
@Controller public class HelloWorldController { @RequestMapping(value = "/helloWorld") public String helloWorld(@ModelAttribute User user) { return "helloWorld"; } }
此處多了一個(gè)注解@ModelAttribute("user"),它的作用是將該綁定的命令對象以“user”為名稱添加到模型對象中供視圖頁面展示使用。我們此時(shí)可以在視圖頁面使用${user.username}來獲取綁定的命令對象的屬性。
e("user2") UserModel test3(@ModelAttribute("user2") UserModel user)
大家可以看到返回值類型是命令對象類型,而且通過 @ModelAttribute("user2") 注解,此時(shí)會暴露返回值到模型數(shù)據(jù)( 名字為user2 ) 中供視圖展示使用
@ModelAttribute 注解的返回值會覆蓋 @RequestMapping 注解方法中的 @ModelAttribute 注解的同名命令對象
?、郾┞侗韱我脤ο鬄槟P蛿?shù)據(jù):放在處理器的一般方法(非功能處理方法)上時(shí),是為表單準(zhǔn)備要展示的表單引用對象,如注冊時(shí)需要選擇的所在城市等,而且在執(zhí)行功能處理方法( @RequestMapping 注解的方法)之前,自動添加到模型對象中,用于視圖頁面展示時(shí)使用;
注意這時(shí)候這個(gè)User類一定要有沒有參數(shù)的構(gòu)造函數(shù)。
上述就是小編為大家分享的Spring中@ModelAttribute注解如何使用了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。