您好,登錄后才能下訂單哦!
這篇文章主要介紹“SpringMVC如何注解@RequestParam”,在日常操作中,相信很多人在SpringMVC如何注解@RequestParam問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”SpringMVC如何注解@RequestParam”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
一、作用
作用在方法傳遞的參數(shù)前,用于接收所傳參數(shù)
例如:http://localhost:8081/selectStudentById?id=01 接收問號后面的參數(shù)值(允許多個參數(shù))
二、注解內(nèi)部的四個屬性
1.name
指定傳入的參數(shù)名稱,其后面跟的參數(shù)名稱一定要與前端傳入的參數(shù)名稱一致
2.value
指定傳入的參數(shù)名稱,其后面跟的參數(shù)名稱一定要與前端傳入的參數(shù)名稱一致
3.requred
指定參數(shù)是否是必傳參數(shù),如果不指定,默認為true
4.defaultValue
指定參數(shù)的默認值
注意:其中name和value屬性的作用等同的.其源碼中name的別名就是value,value的別名就是name
三、注意事項
1.@RequestParam可以解決前后端定義的參數(shù)名不一致的問題
例如前端傳入的參數(shù)名是name,后端方法接收的參數(shù)名是userName,這時可以通過@RequestParam指定value的值為name,實現(xiàn)name與userName的映射
@RequestMapping(method = RequestMethod.GET, value = "selectCourseAndTeacherByStudent") public Course selectCourseAndCourseByStudent(@RequestParam(value = "name") String userName) { Course course = studentService.selectCourseAndTeacherByStudent(userName); return course; }
2.如果后端使用的是基本數(shù)據(jù)類型來接收參數(shù),那么一定要設(shè)置required=false,并且要設(shè)置一個默認值
@RequestMapping(method = RequestMethod.GET,value = "selectStudentById") public Student selectStudentById(@RequestParam(value = "id",required = false,defaultValue = "01") int id){ return studentService.selectStudentById(id); }
因為考慮到前端沒有傳值的情況,如果此時僅僅設(shè)置了required=false,會報500錯誤(下圖異常)因為基本數(shù)據(jù)類型無法接收null,
3.如果后端使用的是引用數(shù)據(jù)類型,則無需設(shè)置required=false和defaultValue
因為即使前端沒有傳入?yún)?shù)值,引用數(shù)據(jù)類型是可以接收null的
@RequestMapping(method = RequestMethod.GET,value = "selectStudentById") public Student selectStudentById(@RequestParam(value = "id") Integer id){ return studentService.selectStudentById(id); }
到此,關(guān)于“SpringMVC如何注解@RequestParam”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。