spring boot写一个get接口
时间: 2024-10-21 16:17:22 浏览: 12
在Spring Boot中编写一个简单的GET接口非常直观,首先你需要创建一个控制器类(Controller),然后在这个类中定义一个处理HTTP GET请求的方法。下面是一个基本的例子:
```java
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class MyController {
@GetMapping("/api/getData")
public String getData() {
// 这里可以放置你的业务逻辑,比如从数据库查询数据,或者其他操作
return "This is a sample data from Spring Boot GET endpoint.";
}
}
```
在这个例子中,`@RestController`注解告诉Spring这是一个RESTful controller,`@GetMapping`则标记这个方法用于处理HTTP GET请求,路径为"/api/getData"。当你通过浏览器访问"http://localhost:8080/api/getData"(假设你的应用运行在本地端口8080),将返回字符串"This is a sample data from Spring Boot GET endpoint."。
阅读全文