全栈编程工具箱
@SpringBootApplication
@RestController
public class DemoApplication {
@GetMapping(
"/helloworld")
public String hello() {
return
"Hello World!";
}
}