@RequestMapping請求路徑映射,假設標註在某個controller的類級別上,則代表訪問此類路徑下的方法都要加上其配置的路徑。最常用是標註在方法上。代表哪一個詳細的方法來接受處理某次請求。html
下面兩種方式都可以從url中傳參數,但是另一種方式的適用性更高一些,當參數中包括中文的時候,假設用第一種方式傳參數,經常會出現參數還沒到controller就已經通過編碼了(好比:通過utf-8編碼後,本來要傳的參數就會以%+ab...cd這種方式出現),而後controller接受到這種請求後,根本沒法解析該請求應該走那個業務方法。而後就會出現常見的404問題。java
。。web
package com.test.jeofey.web; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; @Controller @RequestMapping("/path") public class TestController { // 第一種傳參數的方式 訪問地址好比:http:域名/path/method1/keyWord.html @RequestMapping("method1/{keyWord}") public String getZhiShiDetailData(@PathVariable("keyWord") String keyWord, HttpServletRequest request, HttpServletResponse response){ System.out.println(keyWord); return "v1/detail"; } // 另一種傳參數的方式 訪問地址好比:http:域名/path/method2.html?key=keyWord @RequestMapping("method2") public String getCommonData(HttpServletRequest request, HttpServletResponse response){ String keyWord= request.getParameter("key"); System.out.println(keyWord); return "v1/common"; } }