铁路校友-我拆过的坑cycx

主页:www.j6f.cn知识星球,快手号、抖音号、视频号、微信公众号、百家号、个人博客网站,同名。

@GetMapping("{id}")

@RestController

@RequestMapping("user")

public class RestFullController {

    @GetMapping

    public User get(){

        User user = new User(1,"2wa","man",9);

        return user;

    }



    @GetMapping("{id}")

    public User getById(@PathVariable("id") int id){

        User user = new User(id,"3wa","woman",9);

        return user;

    }

}


发表评论:

Powered By Z-BlogPHP 1.7.3

Copyright Your WebSite.Some Rights Reserved.