springmvc 匹配多级路径

有时候,我们我们级遇到一些比较特殊的路径如:
http://localhost/upload/55555/2020/1/13/20200113191322076.jpg
像这样的图片路径,则可以使用@GetMapping("path/**") ,这样来匹配。

/**
 * test 接口
 */
@RestController
@RequestMapping("test")
public class TestController extends BaseController {


    @GetMapping("path/**")
    public Map path(HttpServletRequest request) {
        Map map = new HashMap<>();
        try {
            String requestURI = request.getRequestURI();
            System.out.println(requestURI);

        } catch (Exception e) {
            e.printStackTrace();
            map.put("code",500);
            map.put("message","系统错误");
        }

        map.put("code",200);
        return map;
    }

}

你可能感兴趣的:(springmvc 匹配多级路径)