스프링을 사용하여 옵션 경로 변수를 만들 수 있습니까? Spring 3.0에서는 옵션 경로 변수를 사용할 수 있습니까? 예를들면 @RequestMapping(value = "/json/{type}", method = RequestMethod.GET) public @ResponseBody TestBean testAjax( HttpServletRequest req, @PathVariable String type, @RequestParam("track") String track) { return new TestBean(); } 여기 있습니다./json/abc또는/json같은 메서드를 호출합니다. 명백한 회피책 선언 1개type요구 파라미터로서 다음과 같이 입력합니다. @RequestMapping(value =..