FdfsService.java
404 Bytes
package com.lhcredit.framework.web.service;
import com.github.tobato.fastdfs.domain.conn.FdfsWebServer;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service("fdfs")
public class FdfsService {
@Autowired
private FdfsWebServer fdfsWebServer;
public String getfdfsUrl(){
return fdfsWebServer.getWebServerUrl();
}
}