springboot 2.0 은 어떻게 fastdfs 를 통 해 파일 분포 식 업 로드 를 실현 합 니까?
3719 단어 springbootfastdfs문건분포 식업로드
1.의존 도입
부모 프로젝트 에서 우 리 는 의존 도 를 관 리 했 습 니 다.버 전 은:
<fastDFS.client.version>1.26.7</fastDFS.client.version>
따라서 여기 서 우 리 는 공사 의 pom.xml 에 좌 표를 직접 도입 하면 된다.
<dependency>
<groupId>com.github.tobato</groupId>
<artifactId>fastdfs-client</artifactId>
</dependency>
@Configuration
@Import(FdfsClientConfig.class)
// jmx bean
@EnableMBeanExport(registration = RegistrationPolicy.IGNORE_EXISTING)
public class FastClientImporter {
}
2.application.yml 파일 에 FastDFS 속성 작성
fdfs:
so-timeout: 1501 #
connect-timeout: 601 #
thumb-image: #
width: 60
height: 60
tracker-list: # tracker : + ( 22122)
- 192.168.0.22:22122
3.테스트
package com.leyou.upload.test;
import com.github.tobato.fastdfs.domain.fdfs.StorePath;
import com.github.tobato.fastdfs.domain.fdfs.ThumbImageConfig;
import com.github.tobato.fastdfs.service.FastFileStorageClient;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
/**
* @author john
* @date 2019/12/6 - 15:09
*/
@SpringBootTest
@RunWith(SpringRunner.class)
public class FastDFSTest {
@Autowired
private FastFileStorageClient storageClient;
@Autowired
private ThumbImageConfig thumbImageConfig;
@Test
public void testUpload() throws FileNotFoundException {
//
File file = new File("D:\\imooc\\project\\images\\1.jpg");
// , :1- 2- 3- 4-
StorePath storePath = this.storageClient.uploadFile(
new FileInputStream(file), file.length(), "jpg", null);
//
System.out.println(storePath.getFullPath());
//
System.out.println(storePath.getPath());
}
@Test
public void testUploadAndCreateThumb() throws FileNotFoundException {
File file = new File("D:\\imooc\\project\\images\\2.jpg");
//
StorePath storePath = this.storageClient.uploadImageAndCrtThumbImage(
new FileInputStream(file), file.length(), "png", null);
//
System.out.println(storePath.getFullPath());
//
System.out.println(storePath.getPath());
//
String path = thumbImageConfig.getThumbImagePath(storePath.getPath());
System.out.println(path);
}
}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin Springboot -- 파트 14 사용 사례 REST로 전환하여 POST로 JSON으로 전환前回 前回 前回 記事 の は は で で で で で で を 使っ 使っ 使っ て て て て て リクエスト を を 受け取り 、 reqeustbody で 、 その リクエスト の ボディ ボディ を を 受け取り 、 関数 内部 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.