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

com.sinszm.sofa.DfsProperties Maven / Gradle / Ivy

Go to download

高可用服务框架,分布式文件存储操作组件 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;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy