请写一个springboot案例
时间: 2024-04-07 11:32:16 浏览: 57
springboot实例
好的,以下是一个简单的 Spring Boot 案例:
1. 创建一个 Maven 项目,添加以下依赖:
```xml
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
```
2. 创建一个名为 `HelloController` 的类,代码如下:
```java
@RestController
public class HelloController {
@GetMapping("/hello")
public String hello() {
return "Hello, world!";
}
}
```
3. 在 `application.properties` 文件中添加以下配置:
```properties
server.port=8080
```
4. 运行项目,访问 `http://localhost:8080/hello`,即可看到 `Hello, world!`。
这个案例中,我们使用了 Spring Boot 的自动配置和快速开发特性,通过 `@RestController` 注解将 `HelloController` 类声明为一个 RESTful 服务,在 `@GetMapping("/hello")` 注解中配置了一个 GET 请求路径 `/hello` ,并在方法中返回了一个字符串 "Hello, world!"。在 `application.properties` 文件中配置了应用程序的端口号为 8080。最后,我们启动了应用程序,并在浏览器中访问了 `/hello` 路径,得到了 "Hello, world!" 的响应。
阅读全文