1.创建一个maven项目
2.pom.xm中添加Spring-boot-starter-parent依赖,这就是一个springboot项目了
Spring-boot-starter-parent是一个特殊的starter,用来提供相关的maven默认依赖,使用之后,常用的包依赖可以省略version标签
3.添加spring-boot-starter-web依赖
4.添加spring-boot-maven-plugin 编译插件
5.配置入口类
@SpringBootApplication //Spring Boot核心注解,用于开启自动配置
public class TestApplication {
public static void main(String[] args) {
SpringApplication.run(TestApplication.class, args);
}
}
5.写一个控制类,并注解:
@Controller
方法:
@RequestMapping(value = "/index", produces = "application/json;charset=UTF-8")
@ResponseBody
6.访问
运行main方法,然后:http://localhost:8888/index