| | |
| | | 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; |
| | | |
| | | |
| | | /** |
| | |
| | | */ |
| | | @Configuration |
| | | @PropertySource( |
| | | value = "classpath:auth.yaml", |
| | | value = "classpath:application.yaml", |
| | | factory = YamlPropertySourceFactory.class // 使用自定义加载器 |
| | | ) |
| | | public class SdkAutoConfiguration { |