Spring Boot 是一个用于简化 Spring 应用程序初始搭建以及开发过程的框架。以下是一个简单的入门示例:
-
首先,你需要在你的项目中添加 Spring Boot 的起步依赖,例如使用 Maven:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.1.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
-
创建一个主应用类,该类含有 Spring Boot 应用程序的主方法:
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class MySpringBootApplication {
public static void main(String[] args) {
SpringApplication.run(MySpringBootApplication.class, args);
}
}
-
创建一个控制器类来处理 web 请求:
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloWorldController {
@GetMapping("/hello")
public String hello() {
return "Hello, Spring Boot!";
}
}
以上代码就构成了一个简单的 Spring Boot 应用程序,可以通过运行 main
方法启动服务器,并通过访问 http://localhost:8080/hello
来测试你的应用。