【springboot基础】如何搭建一个web项目?
在Spring Boot中搭建一个Web项目,你需要执行以下步骤:
创建一个Spring Boot项目:
- 使用Spring Initializr(https://start.spring.io/)生成项目骨架。
- 解压或下载生成的ZIP文件到你的开发环境。
添加Web依赖:
- 在
pom.xml
中添加spring-boot-starter-web
依赖。
- 在
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
创建一个Controller类:
- 创建一个类,使用
@RestController
或@Controller
注解标识这是一个控制器。 - 创建一个方法,使用
@RequestMapping
或@GetMapping
注解来映射HTTP请求到对应的处理方法。
- 创建一个类,使用
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!";
}
}
运行应用:
- 在项目根目录下运行
mvn spring-boot:run
或者使用IDE运行Application
类的main
方法。
- 在项目根目录下运行
测试:
- 打开浏览器或者使用HTTP客户端访问
http://localhost:8080/hello
,你应该能看到返回的消息。
- 打开浏览器或者使用HTTP客户端访问
以下是一个简单的项目结构和pom.xml
示例:
project-name/
│
├── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── example/
│ │ │ └── Application.java
│ │ └── resources/
│ │ └── application.properties
│ └── test/
│ └── java/
│ └── com/
│ └── example/
│ └── ApplicationTests.java
│
└── pom.xml
pom.xml
示例:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>project-name</artifactId>
<version>1.0-SNAPSHOT</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.x.x.RELEASE</version>
</parent>
<dependencies>
评论已关闭