我想用HttpServletRequest的如何使用讀取春天請求PARAM值的HttpServletRequest
http://localhost:8080/api/type?name=xyz&age=20
我控制器的方法會不會@RequestParam定義,它僅僅是
讀取從URL中requestParams數據@RequestMapping(value = "/**", method = RequestMethod.GET)
public ResponseEntity<String> getResponse(
final HttpServletRequest request) {}
我想閱讀使用請求只有參數不是整個網址。