提交 | 用户 | 时间
|
e7c126
|
1 |
package com.iailab.module.infra.framework.file.config; |
H |
2 |
|
|
3 |
import com.iailab.module.infra.framework.file.core.client.FileClientFactory; |
|
4 |
import com.iailab.module.infra.framework.file.core.client.FileClientFactoryImpl; |
|
5 |
import org.springframework.context.annotation.Bean; |
|
6 |
import org.springframework.context.annotation.Configuration; |
|
7 |
|
|
8 |
/** |
|
9 |
* 文件配置类 |
|
10 |
* |
|
11 |
* @author iailab |
|
12 |
*/ |
|
13 |
@Configuration(proxyBeanMethods = false) |
|
14 |
public class IailabFileAutoConfiguration { |
|
15 |
|
|
16 |
@Bean |
|
17 |
public FileClientFactory fileClientFactory() { |
|
18 |
return new FileClientFactoryImpl(); |
|
19 |
} |
|
20 |
|
|
21 |
} |