python 如何调用springboot的 接口
时间: 2023-12-31 09:04:13 浏览: 238
如何设置springboot启动端口
Python 可以使用 `requests` 库来调用 Spring Boot 的接口。以下是一个简单的示例:
```python
import requests
# 发送 GET 请求
response = requests.get('http://localhost:8080/api/user/1')
# 打印响应结果
print(response.json())
# 发送 POST 请求
data = {'name': 'Alice', 'age': 25}
response = requests.post('http://localhost:8080/api/user', json=data)
# 打印响应结果
print(response.json())
```
这里通过 `requests.get` 和 `requests.post` 方法发送 GET 和 POST 请求,并将返回的响应结果转换为 JSON 格式进行打印。其中 `http://localhost:8080/api/user` 是 Spring Boot 服务的接口地址,根据实际情况进行修改。
阅读全文