SpringBoot技术快速入门
Spring Boot 是一个用于简化 Spring 应用程序初始搭建以及开发过程的框架。以下是一个简单的 Spring Boot 应用程序的例子:
- 首先,你需要在你的 pom.xml 文件中添加 Spring Boot 的起步依赖:
<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 DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.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 应用程序,它提供了一个 REST API 接口 /hello
,当你访问这个接口时,它会返回 "Hello, Spring Boot!" 消息。
评论已关闭