接口传参时,不写字段,这种格式http://localhost:9000/findData/1 取参

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/bug_love/article/details/83588634
@GetMapping("/findData/{id}")
    public List<DetectionVo>  findData(@PathVariable("id") String id){
       //return userService.findData();
        System.out.print("name:"+id);
        return null;
    }

猜你喜欢

转载自blog.csdn.net/bug_love/article/details/83588634