@RequestMapping 用法詳解之地址映射(轉)

來源:互聯網
上載者:User

標籤:

@RequestMappingRequestMapping是一個用來處理請求地址映射的註解,可用於類或方法上。用於類上,表示類中的所有響應請求的方法都是以該地址作為父路徑。@RequestMapping(value = "/aaa")//類層級,可以沒有public class myController {    @RequestMapping(value = "/bbb")//方法層級,必須有    public String getMyName() {        return "myReturn";    }}對應的action就是:<form action="aaa/bbb">返回頁面就是myReturn.jsp
引言:

前段時間項目中用到了RESTful模式來開發程式,但是當用POST、PUT模式提交資料時,探索服務器端接受不到提交的資料(伺服器端參數綁定 沒有加任何註解),查看了提交方式為application/json, 而且伺服器端通過request.getReader() 打出的資料裡確實存在瀏覽器提交的資料。為了找出原因,便對參數綁定(@RequestParam、 @RequestBody、 @RequestHeader 、 @PathVariable)進行了研究,同時也看了一下HttpMessageConverter的相關內容,在此一併總結。

 

簡介:

@RequestMapping

RequestMapping是一個用來處理請求地址映射的註解,可用於類或方法上。用於類上,表示類中的所有響應請求的方法都是以該地址作為父路徑。

RequestMapping註解有六個屬性,下面我們把她分成三類進行說明。

1、 value, method;

value:     指定請求的實際地址,指定的地址可以是URI Template 模式(後面將會說明);

method:  指定請求的method類型, GET、POST、PUT、DELETE等;

 

2、 consumes,produces;

consumes: 指定處理請求的提交內容類型(Content-Type),例如application/json, text/html;

produces:    指定返回的內容類型,僅當request要求標頭中的(Accept)類型中包含該指定類型才返回;

 

3、 params,headers;

params: 指定request中必須包含某些參數值是,才讓該方法處理。

headers: 指定request中必須包含某些指定的header值,才能讓該方法處理請求。

 

樣本:1、value  / method 樣本

預設RequestMapping("....str...")即為value的值;

@Controller@RequestMapping("/appointments")public class AppointmentsController {    private AppointmentBook appointmentBook;        @Autowired    public AppointmentsController(AppointmentBook appointmentBook) {        this.appointmentBook = appointmentBook;    }    @RequestMapping(method = RequestMethod.GET)    public Map<String, Appointment> get() {        return appointmentBook.getAppointmentsForToday();    }    @RequestMapping(value="/{day}", method = RequestMethod.GET)    public Map<String, Appointment> getForDay(@PathVariable @DateTimeFormat(iso=ISO.DATE) Date day, Model model) {        return appointmentBook.getAppointmentsForDay(day);    }    @RequestMapping(value="/new", method = RequestMethod.GET)    public AppointmentForm getNewForm() {        return new AppointmentForm();    }    @RequestMapping(method = RequestMethod.POST)    public String add(@Valid AppointmentForm appointment, BindingResult result) {        if (result.hasErrors()) {            return "appointments/new";        }        appointmentBook.addAppointment(appointment);        return "redirect:/appointments";    }}

value的uri值為以下三類:

A) 可以指定為普通的具體值;

B)  可以指定為含有某變數的一類值(URI Template Patterns with Path Variables);

C) 可以指定為含Regex的一類值( URI Template Patterns with Regular Expressions);

 

example B)

@RequestMapping(value="/owners/{ownerId}", method=RequestMethod.GET)public String findOwner(@PathVariable String ownerId, Model model) {  Owner owner = ownerService.findOwner(ownerId);    model.addAttribute("owner", owner);    return "displayOwner"; }

example C)

@RequestMapping("/spring-web/{symbolicName:[a-z-]+}-{version:\d\.\d\.\d}.{extension:\.[a-z]}")  public void handle(@PathVariable String version, @PathVariable String extension) {        // ...  }}
2 consumes、produces 樣本

cousumes的範例:

@Controller@RequestMapping(value = "/pets", method = RequestMethod.POST, consumes="application/json")public void addPet(@RequestBody Pet pet, Model model) {        // implementation omitted}

方法僅處理request Content-Type為“application/json”類型的請求。

produces的範例:

@Controller@RequestMapping(value = "/pets/{petId}", method = RequestMethod.GET, produces="application/json")@ResponseBodypublic Pet getPet(@PathVariable String petId, Model model) {        // implementation omitted}

方法僅處理request請求中Accept頭中包含了"application/json"的請求,同時暗示了返回的內容類型為application/json;

 

 

3 params、headers 樣本

params的範例:

@Controller@RequestMapping("/owners/{ownerId}")public class RelativePathUriTemplateController {  @RequestMapping(value = "/pets/{petId}", method = RequestMethod.GET, params="myParam=myValue")  public void findPet(@PathVariable String ownerId, @PathVariable String petId, Model model) {        // implementation omitted  }}

僅處理請求中包含了名為“myParam”,值為“myValue”的請求;

 

 

headers的範例:

@Controller@RequestMapping("/owners/{ownerId}")public class RelativePathUriTemplateController {@RequestMapping(value = "/pets", method = RequestMethod.GET, headers="Referer=http://www.ifeng.com/")  public void findPet(@PathVariable String ownerId, @PathVariable String petId, Model model) {        // implementation omitted  }}

僅處理request的header中包含了指定“Refer”要求標頭和對應值為“http://www.ifeng.com/”的請求;

 

 

 

上面僅僅介紹了,RequestMapping指定的方法處理哪些請求,下面一篇將講解怎樣處理request提交的資料(資料繫結)和返回的資料。

 

 

參考資料:

1、 Spring Web Doc: 

spring-3.1.0/docs/spring-framework-reference/html/mvc.html


PS:
.js檔案
  /**             * 使用者刪除             */            $("#btnDeleteP").on("click", function() {                var ids = cacheMapToArray();                if (ids==undefined || ids==null || ids =="") {                    layer.open({                        title: ‘提示資訊‘,                        content: ‘未選中記錄!‘                    });                    return;                }                layer.open({                    title: ‘確認資訊‘,                    content: ‘確認要刪除選中的記錄嗎?‘,                    btn: [‘確定‘, ‘取消‘],                    yes: function (permission, layero) {                        ids = ids.join(",");                        $.ajax({                            type: "POST",                            url: getWebRootPath() + ‘/permission/delete‘,                            data: {"ids": ids},                            dataType: "json",                            success: function (obj) {                                eGrid.trigger("reloadGrid");                                layer.open({                                    title: ‘提示資訊‘,                                    content: ‘資料刪除成功!‘                                });                                // 清除本機存放區的任務ID                                permissionIdMap.clear();                            },                            error : function(obj) {                                layer.open({                                    title: ‘提示資訊‘,                                    content: ‘系統異常!‘                                });                            }                        });                    },                    cancel: function (permission) {                        return;                    }                });            })

.Java檔案

   /**     * 刪除使用者     * @param ids     * @return     */    @RequestMapping(value = "delete", method = RequestMethod.POST)    public @ResponseBody String deleteUser(@RequestParam("ids") String ids) {        String[] pks = StringUtils.split(ids,",");        permissionService.deleteUser(pks);        return  Constants.NORMAL;    }

 

@RequestMapping 用法詳解之地址映射(轉)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.