1.解压初始化项目demo(https://gitee.com/Xiao_Zheng111/SpringBoot/blob/master/demo.zip)
2.在pom.xml中加入
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
3.写测试类
@Controller
@SpringBootApplication
public class DemoApplication {
@RequestMapping("/")
@ResponseBody
public String home(){
return "Hello World!";
}
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
至此,一个简单的SpringBoot项目已经搭建完成,然后像启动普通JAVA程序启动这个应用就行了:
在浏览器中访问http://localhost:8080/就可以看到整个WEB项目已经搭建完成了