com.sinszm.sofa.DfsProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of szm-sofa-boot-starter-dfs Show documentation
Show all versions of szm-sofa-boot-starter-dfs Show documentation
高可用服务框架,分布式文件存储操作组件 Copyright © 2021 智慧程序猿(sinsz.com) All rights reserved.
The newest version!
package com.sinszm.sofa;
import com.sinszm.sofa.enums.DfsType;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* 分布式文件服务配置
* @author fh411
*/
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@ConfigurationProperties(prefix = "dfs")
public class DfsProperties {
/**
* 分布式文件服务福类型
*/
private DfsType type = DfsType.MINIO;
}