Springboot 使用@MatrixVariable注解

在Spring3.2 后,一个@MatrixVariable出现了,这个注解的出现拓展了URL请求地址的功能。 
如果要开启Matrix Variable功能的话,必须设置 RequestMappingHandlerMapping 中的 removeSemicolonContent 为false. 
一般情况不用你手动去设置这个属性,因为这个属性默认就是false ,如果你碰见Matrix Variable功能未开启的时候就可以看看是不是误设置这个属性为true了。 


Springboot 默认是无法使用矩阵变量绑定参数的。需要覆盖WebMvcConfigurer中的configurePathMatch方法。

@Configuration
public class WebConfig extends WebMvcConfigurerAdapter {

    @Override
    public void configurePathMatch(PathMatchConfigurer configurer) {
        UrlPathHelper urlPathHelper=new UrlPathHelper();
        urlPathHelper.setRemoveSemicolonContent(false);
        configurer.setUrlPathHelper(urlPathHelper);
    }
}

Demo



// http://127.0.0.1:9082/sys/v1/count/test/id35;price=100;type=1,3/msg/msg44
// http://127.0.0.1:9082/sys/v1/count/test/id35;price=100;type=1,3/msg/msg44;vol=100,45
@GetMapping("test/{id}/msg/{tip}")
//public String testMatrix(@MatrixVariable(pathVar = "id") Map<String, List<String>> map, @PathVariable("tip") String tip){
//public String testMatrix(@MatrixVariable Map<String, List<String>> map, @PathVariable("tip") String tip){
public String testMatrix(@MatrixVariable(pathVar = "id") Map<String, List<String>> map, @MatrixVariable(value = "vol", pathVar = "tip") List<String> list,  @PathVariable("id") String id, @PathVariable("tip") String tip){
    System.out.println("id:" + id);
    System.out.println("tip:" + tip);
    System.out.println("map:" + map);
    System.out.println("list:" + list);
    return "";
}

 

//http://127.0.0.1:9082/sys/v1/count/tablet;low=100;hight=1000?manufacturer=google
@RequestMapping("/{category}")
public String filterProducts(
        @PathVariable("category") String category,
        @MatrixVariable Map<String, List<String>> filterParams,
        @RequestParam("manufacturer") String manufacturer, Model model) {
    return "";
}
//http://127.0.0.1:9082/sys/v1/count/tablet/low=100;hight=1000?manufacturer=google

 



Matrix Variable中,多个变量可以使用“;”(分号)分隔,例如: 
按照类别,价格区间,生产者查询,其实最后一个查询条件使用@RequestParam,类别使用@PathVariable,真正使用到matrixVariable的是 价格区间。
http://127.0.0.1:9082/sys/v1/count/tablet/low=100;hight=1000?manufacturer=google
@RequestMapping("/{category}/{ByCriteria}")
public String filterProducts(
            @PathVariable("category") String category,
            @MatrixVariable(pathVar="ByCriteria") Map<String, List<String>> filterParams,
            @RequestParam("manufacturer") String manufacturer, Model model) {}

			
// GET /owners/42;q=11/pets/21;q=22  
@RequestMapping(value = "/owners/{ownerId}/pets/{petId}", method = RequestMethod.GET)  
public voidfindPet(  
@MatrixVariable(value="q", pathVar="ownerId") intq1,  
@MatrixVariable(value="q", pathVar="petId") intq2) {  
// q1 == 11  
// q2 == 22  //spring3.2.3
}  
针对每一个Parh Variable绑定一个Matrix Variable,然后使用 value 和 pathVar属性就能找到该值。 
		
另外,正对Matrix Variable也是可以指定自身的的属性,例如,是否必须,默认值。 
下面这个例子说明: 
Java代码  收藏代码
// GET /pets/42  
@RequestMapping(value = "/pets/{petId}", method = RequestMethod.GET)  
public voidfindPet(@MatrixVariable(required=true, defaultValue="1") intq) {  
// q == 1  
}  
		

根据 品牌,类别查询代码如下
http://xxx/xxxpr/filter/ByCriteria;brand=dell,google;category=tablet,laptop
@RequestMapping("/filter/{ByCriteria}")
public String getProductsByFilter(@MatrixVariable(pathVar="ByCriteria")  Map<String, List<String>> filterParams, Model model) {}

如果是一个变量的多个值那么可以使用“,”(逗号)分隔 
Java代码  收藏代码
color=red,green,blue  
或者可以使用重复的变量名: 
Java代码  收藏代码
color=red;color=green;color=blue  

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

字正腔圆

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值