本文主要是介绍SpringMVC_003_Ant风格,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Ant风格,为请求路径的一种匹配方式
通配符 | 说明 |
? | 匹配任意一个字符 |
* | 匹配任意字符(包括0个) |
** | 匹配任意层路径(包括0个) |
?匹配:
package com.ack.handler;import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;@Controller
@RequestMapping("ant")
public class AntStyleTest {private static final String SUCCESS = "success";@RequestMapping("a?t1")public String testAnt1(){System.out.println("-->>AntStyleTest/testAnt1");return SUCCESS;}
}
ant/a?t1中间的?可以替换为任意字符(或为空格)都可以;
这篇关于SpringMVC_003_Ant风格的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!