@RequestParam註釋參數中,控制器會掃描視圖傳遞過來的、參數名與value值相同的參數,此處為userId,掃描到參數后將參數的值綁定到註釋後面聲明的變量中,此處為userIdGot.
例如我們訪問地址:http://localhost:8080/你的工程名/learnMVC/ex.html?userId=10001
那麼首先控制器掃描到URL鏈接後面帶的變量userId與value的值相同,所以控制器把變量userId的值10001賦給了@RequestParam後面聲明的變量userIdGot,這樣我們就得到了前臺傳過來的參數。
required參數為true的時候,如果你沒傳所需的參數,,程序將報錯。required參數可省略,省略時,其值默認為false.
注意:這個例子當中,如果聲明變量Integer userIdGot改成int userIdGot,而你又沒有傳相應的參數,訪問頁面將報錯。因為當控制器找不到匹配的變量時,會把null賦給這個變量,而null值裝化為int的時候會報錯,所以此處應用包裝類。
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
@Controller
@RequestMapping("/learnMVC")
public class LearnMVCController {
@RequestMapping("/ex")
public String learnMVC(@RequestParam(value = "userId", required = false) Integer userIdGot, Model model) {
String str = "成功得到綁定數據:" + userIdGot;
model.addAttribute("userIdGot", str);
return "learnMVC.ftl";
}
}