Skip to the content.

baidu-spring-boot-starter


Logo

日志

文档

Api文档链接

引入项目依赖


    <dependency>
        <groupId>io.github.lunasaw</groupId>
        <artifactId>baidu-spring-boot-starter</artifactId>
        <version>${last.version}</version>
    </dependency>

在配置文件 application.yml 加入可选配置

# 百度API
// 生成地址https://console.bce.baidu.com/
spring:
  baidu:
    # 百度appId
    app-id: xxx
    # 百度appKey
    app-key: xxxx
    secret-key: xxx
    enable: false

引用示例


若采用SpringBoot构建项目可通过将第三方包中的BaiduProperties,BaiduKeyGenerate通过Spring配置文件注入Spring管理

@SpringBootTest
@RunWith(SpringRunner.class)
public class BaiduApiTest {
    @Autowired
    private BaiduKeyGenerate baiduKeyGenerate;

    @Test
    public void atest() throws Exception {
        baiduKeyGenerate.getAuth();
    }
}


结果即刻得到配置数据,进而调用api里的静态方法完成调用