@RequestParam删除URL中的问号

时间:2015-05-06 09:21:48

标签: spring api rest

我正在尝试使用Spring构建REST API。

如何替换URI

localhost: 8080 / rest / api / v1 / users / id ?id = 1

通过

localhost: 8080 / rest / api / v1 / users / id / 1

1 个答案:

答案 0 :(得分:0)

我使用@PathVariable成功解决了问题,例如:

public ResponseEntity<String> hello (@PathVariable Integer id) {

        String hello  ="hello "+ id ;
        return new ResponseEntity<String>(hello, HttpStatus.ACCEPTED);
    }

,相应的网址为:

localhost:8080/hello/15

TKX