0
我的服務代碼:如何獲得請求的URI的一部分進入路徑變量Spring MVC中的REST服務
@RequestMapping(value = "/projects/{projectId}/resources/web/{path}", method = RequestMethod.GET)
@ResponseBody
public void getWebFileContent(@PathVariable("projectId") String projectId,@PathVariable("path") String path, HttpServletRequest httpServletRequest) throws Exception {
}
而且我的要求會
- /項目/ PRO1 /資源/網絡/ src目錄/主/ web應用
- /項目/ PRO1 /資源/網絡/ src目錄/主/測試/ COM/PRO1 ...
,並有可能得到「的src/main/webap P/../.....」進入 「路徑」 變量