版權說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權,請進行舉報或認領
文檔簡介
1、A、@ModelAttributeAnnotationthatbindsamethodparametermethodreturnvaluetoanamedmodelattributeexposedtoawebview.SupptedfRequestMappingannotatedhlerclasses.在被@RequestMapping注釋的處理器類中,這個注釋可以綁定一個方法參數(shù)或綁定一個方法的返回值到一個命名的模型屬性,提供給一個視
2、圖。CanbeusedtoexposecommobjectstoawebviewusingspecificattributenamesthroughannotatingcrespondingparametersofaRequestMappingannotatedhlermethod).可以用于把一個comm對象提供給web視圖,使用指定的屬性名稱,在被@RequestMapping注釋的處理器方法中注釋相關參數(shù)。Canalsobeuse
3、dtoexposereferencedatatoawebviewthroughannotatingaccessmethodsinacontrollerclasswhichisbasedonRequestMappingannotatedhlermethodswithsuchaccessmethodsallowedtohaveanyargumentsthatRequestMappingsupptsfhlermethodsreturningt
4、hemodelattributevaluetoexpose.可以用于提供數(shù)據(jù)給一個web視圖,通過注釋處理器方法,這個方法允許有任何參數(shù),返回的模型屬性值被提供。A.1、@ModelAttribute的屬性的屬性valueThenameofthemodelattributetobindto.綁定的模型屬性的名稱。Thedefaultmodelattributenameisinferredfromthedeclaredattributet
5、ype(i.e.themethodparametertypemethodreturntype)basedonthenonqualifiedclassname:e.g.“derAddress“fclass“mypackage.derAddress““derAddressList“f“List“.默認的模型屬性名稱自動判斷聲明的屬性類型(如,方法參數(shù)類型或方法返回類型)。如這個值是derAddress,就對于當前包.derAddress。B
6、、@ModelAttribute注釋一個方法注釋一個方法An@ModelAttributeonamethodindicatesthepurposeofthatmethodistoaddonememodelattributes.Suchmethodssupptthesameargumenttypesas@RequestMappingmethodsbutcannotbemappeddirectlytorequests.Instead@Mod
7、elAttributemethodsinacontrollerareinvokedbefe@RequestMappingmethodswithinthesamecontroller.被@ModelAttribute注釋的方法表示這個方法的目的是增加一個或多個模型(model)屬性。這個方法和被@RequestMapping注釋的方法一樣也支持@RequestParam參數(shù),但是它不能直接被請求映射。實際上,控制器中的@ModelAttr
8、ibute方法是在同一控制器中的@RequestMapping方法被調(diào)用之前調(diào)用的。@ModelAttributemethodsareusedtopopulatethemodelwithcommonlyneededattributesfexampletofilladownwithstateswithpettypestoretrieveacommobjectlikeAccountindertouseittorepresentthedata
9、onanHTMLfm.被@ModelAttribute注釋的方法用于填充model屬性,例如,為下拉菜單填充內(nèi)容,或檢索一個comm對象(如,Account),用它來表示一個HTML表單中的數(shù)據(jù)。Acontrollercanhaveanynumberof@ModelAttributemethods.Allsuchmethodsareinvokedbefe@RequestMappingmethodsofthesamecontroller.
10、一個控制器可以有任意數(shù)量的@ModelAttribute方法。所有這些方法都在@RequestMapping方法被調(diào)用之前調(diào)用。publicStringhelloWld()return“helloWld“這個例子中使用@ModelAttribute注釋的value屬性,來指定model屬性的名稱。model屬性對象就是方法的返回值。它無須要特定的參數(shù)。B.4、@ModelAttribute和@RequestMapping同時注釋一個方法
11、同時注釋一個方法舉例說明舉例說明@ControllerpublicclassHelloWldController@RequestMapping(value=“helloWld.do“)@ModelAttribute(“attributeName“)publicStringhelloWld()return“hi“這時這個方法的返回值并不是表示一個視圖名稱,而是model屬性的值,視圖名稱由RequestToViewNameTranslat
12、根據(jù)請求“helloWld.do“轉(zhuǎn)換為helloWld。Model屬性名稱有@ModelAttribute(value=””)指定。C、@ModelAttribute注釋一個方法的參數(shù)注釋一個方法的參數(shù)An@ModelAttributeonamethodargumentindicatestheargumentshouldberetrievedfromthemodel.Ifnotpresentinthemodelthearguments
13、houldbeinstantiatedfirstthenaddedtothemodel.Oncepresentinthemodeltheargumentsfieldsshouldbepopulatedfromallrequestparametersthathavematchingnames.ThisisknownasdatabindinginSpringMVCaveryusefulmechanismthatsavesyoufromhav
14、ingtoparseeachfmfieldindividually.@ModelAttribute注釋方法的一個參數(shù)表示應從模型model中取得。若在model中未找到,那么這個參數(shù)將先被實例化后加入到model中。若在model中找到,則請求參數(shù)名稱和model屬性字段若相匹配就會自動填充。這個機制對于表單提交數(shù)據(jù)綁定到對象屬性上很有效。B.1、從、從model中獲取中獲取Itmayalreadybeinthemodelduetoan
15、@ModelAttributemethodinthesamecontroller參數(shù)的值從當前控制器的@ModelAttribute方法提供的model屬性中獲取。舉例說明舉例說明@ControllerpublicclassHelloWldController@ModelAttribute(“user“)publicUseraddAccount()returnnewUser(“jz““123“)@RequestMapping(value
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 眾賞文庫僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- neuro fuzzy temperature controller
- an embedded single chiptemperature controller design
- a microcontroller-based programmable temperature controller
- Neuro fuzzy temperature controller.pdf
- a study on an anti-lock braking system controller and rear-wheel controller to enhance vehicle lateral stability
- A study on an anti-lock braking system controller and rear-wheel controller to enhance vehicle lateral stability.pdf
- Cache Controller的研究和設計.pdf
- Process Controller Design for Sheet Metal Forming .pdf
- process controller design for sheet metal forming
- Neuro fuzzy temperature controller.pdf
- A study on an anti-lock braking system controller and rear-wheel controller to enhance vehicle lateral stability.pdf
- 基于SDN Controller的交換保護研究.pdf
- The Design of an Autopilot Controller for an Unmanned Aerial Vehicle.pdf
- Programmable controller designed for electro-pneumatic systems .pdf
- programmable controller designed for electro-pneumatic systems
- A microcontroller-based programmable temperature controller .pdf
- A microcontroller-based programmable temperature controller .pdf
- Process Controller Design for Sheet Metal Forming .pdf
- 4.fc協(xié)議詳解
- a programmable logic controller timer system based on parallel operation
評論
0/150
提交評論