您好,登錄后才能下訂單哦!
這篇文章主要介紹了Spring MVC獲取查詢參數及路徑參數代碼實例,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
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獲取查詢參數
@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獲取路徑參數
@Controller public 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測試
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。