前面都能正常执行到这里卡住了,无法启动成功

@RestController
@RequestMapping("/hello")
public class HelloController {

   /* @Value("${cupSize}")
    private String cupSize;
    @Value("${age}")
    private int age;
    @Value("${content}")
    private String content;*/
    @Autowired
    private GirlProperties girlProperties;

    @GetMapping("/say/${id}")
    public String say(@PathVariable("id")Integer id){
        //return girlProperties.getCupSize();
        //return "index";
        return "id: " + id;
    }

}


qq_无齿又怎样_0
浏览 2737回答 2
2回答

chandou

@GetMapping("/say/${id}")更改为@GetMapping("/say/{id}")@GetMapping("/say/{id}") public String say(@PathVariable("id") Integer id) {     return "id=" + id; }

qq_a沙漏中的时光_0

什么错?报什么异常
打开App,查看更多内容
随时随地看视频慕课网APP