Spring MVC 基於URL的攔截和對映規則

茅坤寶駿氹發表於2018-05-03

轉載自 Spring MVC 基於URL的對映規則(註解版)

url-pattern

如果看過前一篇入門的帖子,應該瞭解到spring mvc在啟動前必須要在web.xml中配置servlet,這樣才能攔截到想要對映的url地址。

<servlet>
    <servlet-name>SpringMVC</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>
    
<servlet-mapping>
    <servlet-name>SpringMVC</servlet-name>
    <url-pattern>*.html</url-pattern>
</servlet-mapping>

其中servlet配置了servlet的實現類,而servlet-mapping則定義了spring mvc起作用的url模式,常見的配置有三種:

  • / 這個斜槓,表示攔截所有的url,如/test/test.html
  • /* 這個模式包含/,可以多攔截以*.jsp結尾的url
  • *.xxx 這個攔截固定結尾的url,常見的如*.do*.json等等

RequestMapping()

基於註解風格的Spring MVC就是通過這個方法來定義對映的url的,常使用的方式如下:

基於普通的url

這種是最簡單的url對映,可以接收到localhost:8080/contextName/hello這樣的請求

@RequestMapping("/hello")
    public @ResponseBody String test() {
        return "hello!";
    }

基於多個普通的url路徑

RequestMapping可以同時指定多個url,對映到同一個應答邏輯中:

//普通的url路徑對映
    @RequestMapping(value={"/multi1","/multi2","/test/multi"})
    public @ResponseBody String multiUrl() {
        return "test multi url";
    }

基於路徑變數的URL對映

這種URL對映可以直接在路徑上指定變數,通過@PathVariable可以獲得物件。

    //基本的URL模板對映
    @RequestMapping(value="/user1/{name}")
    public @ResponseBody String basicUrl1(@PathVariable String name){
        return "hello"+name;
    }
    @RequestMapping(value="/user2/{name}/test")
    public @ResponseBody String basicUrl2(@PathVariable String name){
        return "hello"+name+"test";
    }
    @RequestMapping(value="/user1/{name}/test/{age}")
    public @ResponseBody String basicUrl3(@PathVariable String name,@PathVariable int age){
        return "hello"+name+" age"+age;
    }

基於通配風格的url對映

第一種:

    @RequestMapping(value="/ant1?")
    public @ResponseBody String ant1(){
        return "ant1?";
    }
  • 支援下面風格:
localhost:8080/context/ant12 或者
localhost:8080/context/ant1a

第二種:

    @RequestMapping(value="/ant2*")
    public @ResponseBody String ant2(){
        return "ant2*";
    }
  • 支援下面風格:
localhost:8080/context/ant2aaaa 或者
localhost:8080/context/ant2

第三種:

@RequestMapping(value="/ant3/*")
    public @ResponseBody String ant3(){
        return "ant3/*";
    }
  • 支援下面風格:
localhost:8080/context/ant3/aaaa 或者
localhost:8080/context/ant3/123

第四種:

    @RequestMapping(value="/ant4/**")
    public @ResponseBody String ant4(){
        return "ant4/**";
    }
  • 支援下面風格
localhost:8080/context/ant4/ 或者
localhost:8080/context/ant4/aaa 或者
localhost:8080/context/ant4/aaa/123

混用統配和路徑變數

  //混用
    @RequestMapping(value="/ant5/**/{name}")
    public @ResponseBody String ant5(@PathVariable String name){
        return "ant+url  "+name;
    }

它能匹配

localhost:8080/context/ant5/123 或者
localhost:8080/context/ant5/aaa/123 或者
localhost:8080/context/ant5/aaa/123/test

最後一個會被當做name值

基於正則的url對映

這個比較有意思,它支援{名稱:正規表示式}的寫法,以另一種風格限制url的對映。

    //正規表示式
    @RequestMapping(value="/student/{name:\\w+}-{age:\\d+}")
    public @ResponseBody String regUrl(@PathVariable String name,@PathVariable int age){
        return "name:"+name+" age:"+age;
    }

例如上面的URL就只能匹配如:

localhost:8080/context/student/wangwu-33 或者
localhost:8080/context/student/zhao4-22

參考

開勇學Spring mvc —— 不得不說,這個講的很全
URL到Action的對映規則


相關文章