需求:使用 SpringBoot 开发一个web应用,浏览器发起请求 /hello后,给浏览器返回字符串 “hello world "。
步骤
①. 创建Maven工程
②. 导入spring-boot-stater-web起步依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
③. 编写Controller
@RestController
public class HelloController {@RequestMapping("/hello")public String hello(){return "hello world";}}
④. 提供启动类