根据我一直在做的RESTful API最佳实践研究,URI应该唯一地标识资源或资源列表。因此,我想创建使用任意路径键/值对的端点,如:
GET /customers/status/enrolled
而不是像这样:
GET /customers?status=enrolled
同样,我想设置无限数量的身份分区,如下所示:
GET /customers/{attribute1Name}/{attribute1Value}/{attribute2Name}/{attribute2Value
SpringMVC是否可以使用任意一组路径键/值对创建一个RequestMapping并且数量不限?