@SpringBootApplication
@RestController
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
@GetMapping("/hello")
public String hello(@RequestParam(value = "name", defaultValue = "World") String name) {
return String.format("Hello %s!", name);
}
}
在浏览器中输入http://localhost:8080//hello
则会执行 hello方法
可以在url地址后 传入?name=Amy
这样 hello
方法中 的value 值就不是默认的值 而是 Amy