案例15 Spring Boot入门案例

1. 选择Spring Initializr快速构建项目

案例15 Spring Boot入门案例_第1张图片

2. 设置项目信息

案例15 Spring Boot入门案例_第2张图片

3. 选择依赖

案例15 Spring Boot入门案例_第3张图片

4. 设置项目名称

案例15 Spring Boot入门案例_第4张图片

5. 项目结构

案例15 Spring Boot入门案例_第5张图片

6. 项目依赖

自动配置了Spring MVC、内置了Tomcat、配置了Logback(日志)、配置了JSON。

案例15 Spring Boot入门案例_第6张图片

7. 创建HelloController类

com.wfit.boot.hello目录下创建HelloController.java。

@RestController
@RequestMapping("/hello")
public class HelloController {
    @GetMapping("/hello")
    public String hello(){
        return "hello Spring Boot!";
    }
}

8. 启动项目

com.wfit.boot目录下的BootApplication为应用启动类,运行main方法就可以启动项目。

案例15 Spring Boot入门案例_第7张图片

9. 访问项目

http://localhost:8080/hello/hello

你可能感兴趣的:(SpringBoot入门实战,java,spring,spring,boot)