我休息控制器設置像下面處理正斜槓彈簧MVC其餘
@RequestMapping(value = {"getDataFromSpaceForType/{gridName}/{spaceName}/{dataType}/{fieldNames}/{criteria}"}, method = GET, produces = "application/json")
public EntriesForTypeName getDataFromSpaceForType(@PathVariable Map<String, String> dataRequestVariables) throws Exception {
的最後一個字段的標準可以包含多個正斜槓。我無法處理這種情況。它打破了404錯誤
另外我不知道有多少斜槓可能會來,所以它成爲不可能創建多個方法。
可能的複製[春季3 RequestMapping的:獲取路徑值](http://stackoverflow.com/questions/3686808/spring-3-requestmapping-get-path-value) –
@DanielOlszewski我看了一下,但似乎接受的答案不適用於春天啓動 –
你使用什麼值 request.getAttribute( HandlerMapping.PATH_WITHIN_HANDLER_MAPPING_ATTRIBUTE) – kuhajeyan