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

com.github.tobato.fastdfs.conn.FdfsWebServer Maven / Gradle / Ivy

There is a newer version: 1.27.2
Show newest version
package com.github.tobato.fastdfs.conn;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

import com.github.tobato.fastdfs.FdfsClientConstants;

/**
 * 表示文件Web服务器对象
 * 
 * 
 * 由Nginx服务器承担此角色,通常配置以后就不会再改变
 * 
* * @author tobato * */ @Component @ConfigurationProperties(prefix = FdfsClientConstants.ROOT_CONFIG_PREFIX) public class FdfsWebServer { private String webServerUrl; public String getWebServerUrl() { return webServerUrl; } public void setWebServerUrl(String webServerUrl) { this.webServerUrl = webServerUrl; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy