开发工具:IDEA
Spring Boot的设计目的是用来简化新Spring应用的初始搭建以及开发过程。因为SpringBoot内嵌Tomcat,所以SpringBoot可以以jar包形式执行java -jar xx.jar
运行,SpringBoot使用starter起步依赖来简化包的加载。
新建项目Spring Initializr
选择项目所需要的技术,这里我们只需勾中Web下的Web
设置项目名和项目存储位置
生成的项目的根包目录下会有一个入口文件{artifactId}Application命名规则的入口文件。运行项目
在浏览器输入http://localhost:8080 ,但是我却看到了一个404页面,不代表我们没有成功运行,而是我们还没写控制器
那么下面我们来写一个类,让它展示一些东西
新建一个HelloController.java
package com.chengzequn;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloController {
@RequestMapping(value = "/hello",method = RequestMethod.GET)
public String say() {
return "Hello Spring Boot!";
}
}