Spring Boot框架搭建
要使用Spring Boot搭建一个简单的Web应用程序,你需要以下步骤:
创建一个Spring Boot项目:
你可以使用Spring Initializr(https://start.spring.io/)快速生成一个项目。
添加依赖:
确保你的
pom.xml
包含Spring Web依赖。
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
- 创建一个Controller:
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloController {
@GetMapping("/hello")
public String hello() {
return "Hello, Spring Boot!";
}
}
- 创建一个应用启动类:
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
运行应用程序:
在IDE中运行
Application
类的main
方法,或者使用mvn spring-boot:run
命令。测试应用程序:
打开浏览器访问
http://localhost:8080/hello
,你应该能看到输出 "Hello, Spring Boot!"。
以上步骤构建了一个简单的Spring Boot Web应用程序,并提供了一个接口/hello
返回文本 "Hello, Spring Boot!"。
评论已关闭