@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; } }
chandou
qq_a沙漏中的时光_0