All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.gitee.mingbaobaba.apijson.querycondition.query.properties.ApiJsonQueryProperties Maven / Gradle / Ivy

There is a newer version: v1.1.0
Show newest version
package io.gitee.mingbaobaba.apijson.querycondition.query.properties;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

/**
 * 

数仓服务配置

* * @author yingsheng.ye * @version 1.0.0 * @since 2023/6/20 21:46 */ @Data @Component @ConfigurationProperties(prefix = "datawarehouse") public class ApiJsonQueryProperties { /** * 客户端ID */ private String clientId; /** * 客户端密钥 */ private String clientSecret; /** * 授权类型 */ private String grantType = "client_credentials"; /** * 授权范围 */ private String scope = "all"; /** * 请求token地址 */ private String tokenUrl = "ttp://localhost:8080/oauth/token"; /** * 服务调用地址 */ private String serviceUrl = "http://localhost:8080/get"; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy