這篇文章將為大家詳細(xì)講解有關(guān)SpringMVC如何獲取查詢參數(shù)及路徑參數(shù),小編覺得挺實(shí)用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
Jsp頁面 query.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %><%@ page isELIgnored="false" %><html><head> <title>Title</title></head><body> <h2>您輸入的id是 ${id}</h2></body></html> @RequestParm獲取查詢參數(shù) @Controller@RequestMapping("/test")public class TestController { @RequestMapping(value = "/user", method = RequestMethod.GET) public String user(@RequestParam("id") int id, Map<String, Integer> map) { map.put("id", id); return "query"; }}
以上可訪問.../test/user?id=10測試
@PathVariable獲取路徑參數(shù) @Controllerpublic class TestController { @RequestMapping(value = "/user/{id}", method = RequestMethod.GET) public String user(@PathVariable("id") int id, Map<String, Integer> map) { map.put("id", id); return "query"; }}
以上可訪問.../user/10測試
關(guān)于“SpringMVC如何獲取查詢參數(shù)及路徑參數(shù)”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
網(wǎng)站標(biāo)題:SpringMVC如何獲取查詢參數(shù)及路徑參數(shù)-創(chuàng)新互聯(lián)
網(wǎng)頁URL:http://muchs.cn/article40/pgjho.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供ChatGPT、企業(yè)建站、網(wǎng)站營銷、移動網(wǎng)站建設(shè)、網(wǎng)站收錄、商城網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容