目录
- <parent>
- <groupId>org.springframework.bootgroupId>
- <artifactId>spring-boot-starter-parentartifactId>
- <version>2.1.8.RELEASEversion>
- parent>
-
- <dependencies>
-
- <dependency>
- <groupId>org.springframework.bootgroupId>
- <artifactId>spring-boot-starter-webartifactId>
- dependency>
- dependencies>
- @RestController
- public class HelloController {
- @RequestMapping("/hello")
- public String hello(){
- return "hello Spring Boot !";
- }
- }
- /*引导类,SpringBoot项目的入口*/
- @SpringBootApplication
- public class HelloApplication {
- public static void main(String[] args) {
- SpringApplication.run(HelloApplication.class,args);
- }
- }