1
使用spring mvc工作。我必須爲考試添加問題。當我選擇的考試我的鏈接是這樣的:如何從網址獲取id springmvc
localhost:7070/elearning/expert/ajouterQuestionExam?idExam=1
現在我不知道如何從URL得到這個ID在使用它:metier.ajouterQuestion(Q,IdExam);
使用spring mvc工作。我必須爲考試添加問題。當我選擇的考試我的鏈接是這樣的:如何從網址獲取id springmvc
localhost:7070/elearning/expert/ajouterQuestionExam?idExam=1
現在我不知道如何從URL得到這個ID在使用它:metier.ajouterQuestion(Q,IdExam);
您可以使用@RequestParam註釋將請求參數映射到請求方法中的參數。閱讀Spring框架參考文檔第21章 - Web MVC framework和搜索:
"Use the @RequestParam annotation to bind request parameters"
作出解釋,包括示例。也可能有其他方法。
事實上,如果你是認真學習Spring MVC的,你應該閱讀(或至少,脫脂讀取)所有章21
謝謝,我會做 –