spring boot集成tongweb
时间: 2023-12-01 20:02:16 浏览: 129
首先,需要在 pom.xml 文件中添加以下依赖:
```xml
<dependency>
<groupId>com.tongweb</groupId>
<artifactId>tongweb-spring-boot-starter</artifactId>
<version>1.0.0</version>
</dependency>
```
然后,在 application.properties 文件中添加以下配置:
```
tongweb.appid=your_app_id
tongweb.appkey=your_app_key
tongweb.endpoint=http://api.tongweb.com
```
接下来,在代码中使用 `@Autowired` 注解注入 `TongwebService`:
```java
@RestController
public class MyController {
@Autowired
private TongwebService tongwebService;
@GetMapping("/hello")
public String hello() {
String result = tongwebService.callApi("api_name", "param1=value1¶m2=value2");
return result;
}
}
```
其中,`callApi` 方法的第一个参数是 Tongweb API 的名称,第二个参数是 API 的参数。调用该方法即可调用 Tongweb API。
注意:在使用 Tongweb API 时,需要先在 Tongweb 平台上注册应用并获取 AppID 和 AppKey。
阅读全文