前言
本文是“SpringBoot 1024行代码”系列的第一篇。本文介绍了如何用SpringBoot搭建一个简单的web应用。
准备工作
1 安装jdk1.8
2 安装maven3 具备Spring和SpringMVC的基础知识具体步骤
1. 在pom.xml中加入SpringBoot的引用
org.springframework.boot spring-boot-starter org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-maven-plugin
2. 创建一个程序入口类
package com.example.demo;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;@SpringBootApplicationpublic class DemoApplication { public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); }}
3. 添加一个SpringMVC的controller
package com.example.demo.controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;@RestControllerpublic class DemoController { @RequestMapping("/hello") String home() { return "Hello World!\n"; }}
4. 验证程序
调用接口
curl 127.0.0.1:8080/hello
返回结果
Hello World!