springmvc請求引數獲取的幾種方法

TopCoder.NET發表於2017-10-15

1、直接把表單的引數寫在Controller相應的方法的形參中,適用於get方式提交,不適用於post方式提交。

複製程式碼
    /**
     * 1.直接把表單的引數寫在Controller相應的方法的形參中
      * @param username
     * @param password
     * @return
     */
    @RequestMapping("/addUser1")
    public String addUser1(String username,String password) {
        System.out.println("username is:"+username);
        System.out.println("password is:"+password);
        return "demo/index";
    }
複製程式碼

url形式:http://localhost/SSMDemo/demo/addUser1?username=lixiaoxi&password=111111 提交的引數需要和Controller方法中的入參名稱一致。

2、通過HttpServletRequest接收,post方式和get方式都可以。

複製程式碼
    /**
     * 2、通過HttpServletRequest接收
      * @param request
     * @return
     */
    @RequestMapping("/addUser2")
    public String addUser2(HttpServletRequest request) {
        String username=request.getParameter("username");
        String password=request.getParameter("password");
        System.out.println("username is:"+username);
        System.out.println("password is:"+password);
        return "demo/index";
    }
複製程式碼

3、通過一個bean來接收,post方式和get方式都可以。
(1)建立一個和表單中引數對應的bean

複製程式碼
package demo.model;

public class UserModel {
    
    private String username;
    private String password;
    public String getUsername() {
        return username;
    }
    public void setUsername(String username) {
        this.username = username;
    }
    public String getPassword() {
        return password;
    }
    public void setPassword(String password) {
        this.password = password;
    }
    
}
複製程式碼

(2)用這個bean來封裝接收的引數

複製程式碼
    /**
     * 3、通過一個bean來接收
      * @param user
     * @return
     */
    @RequestMapping("/addUser3")
    public String addUser3(UserModel user) {
        System.out.println("username is:"+user.getUsername());
        System.out.println("password is:"+user.getPassword());
        return "demo/index";
    }
複製程式碼

4、通過@PathVariable獲取路徑中的引數

複製程式碼
    /**
     * 4、通過@PathVariable獲取路徑中的引數
      * @param username
     * @param password
     * @return
     */
    @RequestMapping(value="/addUser4/{username}/{password}",method=RequestMethod.GET)
public String addUser4(@PathVariable String username,@PathVariable String password) { System.out.println("username is:"+username); System.out.println("password is:"+password); return "demo/index"; }
複製程式碼

例如,訪問http://localhost/SSMDemo/demo/addUser4/lixiaoxi/111111 路徑時,則自動將URL中模板變數{username}和{password}繫結到通過@PathVariable註解的同名引數上,即入參後username=lixiaoxi、password=111111。
5、使用@ModelAttribute註解獲取POST請求的FORM表單資料
Jsp表單如下:

複製程式碼
<form action ="<%=request.getContextPath()%>/demo/addUser5" method="post"> 
     使用者名稱:&nbsp;<input type="text" name="username"/><br/>
     密&nbsp;&nbsp;碼:&nbsp;<input type="password" name="password"/><br/>
     <input type="submit" value="提交"/> 
     <input type="reset" value="重置"/> 
</form> 
複製程式碼

Java Controller如下:

複製程式碼
    /**
     * 5、使用@ModelAttribute註解獲取POST請求的FORM表單資料
      * @param user
     * @return
     */
    @RequestMapping(value="/addUser5",method=RequestMethod.POST)
    public String addUser5(@ModelAttribute("user") UserModel user) {
        System.out.println("username is:"+user.getUsername());
        System.out.println("password is:"+user.getPassword());
        return "demo/index";
    }
複製程式碼

6、用註解@RequestParam繫結請求引數到方法入參

當請求引數username不存在時會有異常發生,可以通過設定屬性required=false解決,例如: @RequestParam(value="username", required=false)

複製程式碼
    /**
     * 6、用註解@RequestParam繫結請求引數到方法入參
      * @param username
     * @param password
     * @return
     */
    @RequestMapping(value="/addUser6",method=RequestMethod.GET)
    public String addUser6(@RequestParam("username") String username,@RequestParam("password") String password) {
        System.out.println("username is:"+username);
        System.out.println("password is:"+password);
        return "demo/index";
    }
複製程式碼

相關文章