| | |
| | | package com.iailab.sdk.auth.config; |
| | | |
| | | import com.iailab.sdk.auth.client.IailabAuthClient; |
| | | import com.iailab.sdk.auth.factory.YamlPropertySourceFactory; |
| | | import com.iailab.sdk.util.http.IailabHttpUtils; |
| | | import org.springframework.beans.factory.annotation.Value; |
| | | import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; |
| | | import org.springframework.boot.context.properties.EnableConfigurationProperties; |
| | | import org.springframework.context.annotation.Bean; |
| | | import org.springframework.context.annotation.Configuration; |
| | | import org.springframework.context.annotation.PropertySource; |
| | | import org.springframework.context.support.PropertySourcesPlaceholderConfigurer; |
| | | import org.springframework.core.io.ClassPathResource; |
| | | |
| | | import javax.annotation.PostConstruct; |
| | | import javax.annotation.Resource; |
| | | |
| | | |
| | | /** |
| | |
| | | @Value("${iailab.token.username}") |
| | | public String username; |
| | | |
| | | @Value("${iailab.token.password}") |
| | | public String password; |
| | | |
| | | public static String BASE_URL; |
| | | |
| | | public static Long TENANT_ID; |
| | |
| | | |
| | | public static String USERNAME; |
| | | |
| | | public static String PASSWORD; |
| | | |
| | | @PostConstruct |
| | | public void initUrl() { |
| | | BASE_URL = this.baseUrl; |
| | |
| | | CLIENT_ID = this.clientId; |
| | | CLIENT_SECRET = this.clientSecret; |
| | | USERNAME = this.username; |
| | | PASSWORD = this.password; |
| | | } |
| | | } |