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

lodsve.dfs.configuration.DfsProperties Maven / Gradle / Ivy

There is a newer version: 2.7.6-RELEASE
Show newest version
package lodsve.dfs.configuration;

import com.alibaba.common.FastDfsConfig;
import lodsve.core.properties.autoconfigure.annotations.ConfigurationProperties;

/**
 * 配置.
 *
 * @author sunhao([email protected])
 * @version 1.0 2017-12-4-0004 10:46
 */
@ConfigurationProperties(prefix = "lodsve.dfs", locations = "${params.root}/framework/dfs_client.properties")
public class DfsProperties {
    private FastDfsConfig fastDfs;

    public FastDfsConfig getFastDfs() {
        return fastDfs;
    }

    public void setFastDfs(FastDfsConfig fastDfs) {
        this.fastDfs = fastDfs;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy