文件存储微服务搭建

创建文件管理微服务service_file,该工程主要用于实现文件上传以及文件删除等功能。

(1)修改pom.xml,引入依赖



    
        service-file
        com.gzy
        1.0-SNAPSHOT
    
    4.0.0

    service_file
    
        
            org.springframework.boot
            spring-boot-starter-web
        
        
            net.oschina.zcx7878
            fastdfs-client-java
            1.27.0.0
        
        
            com.changgou
            changgou_common
            1.0-SNAPSHOT
        
    

(2)在resources文件夹下创建fasfDFS的配置文件fdfs_client.conf

connect_timeout = 60
network_timeout = 60
charset = UTF-8
http.tracker_http_port = 8080
tracker_server = 192.168.200.128:22122

connect_timeout:连接超时时间,单位为秒。

network_timeout:通信超时时间,单位为秒。发送或接收数据时。假设在超时时间后还不能发送或接收数据,则本次网络通信失败

charset: 字符集

http.tracker_http_port :.tracker的http端口

tracker_server: tracker服务器IP和端口设置

(3)在resources文件夹下创建application.yml

spring:
  servlet:
    multipart:
      max-file-size: 10MB  #单个文件大小
      max-request-size: 10MB #设置总上传文件大小
  application:
    name: file  #微服务的应用名称
server:
  port: 9007
eureka:
  client:
    service-url:
      defaultZone: http://127.0.0.1:6868/eureka
  instance:
    prefer-ip-address: true
feign:
  hystrix:
    enabled: true

max-file-size是单个文件大小,max-request-size是设置总上传的数据大小

(4)启动类,创建启动类FileApplication

@SpringBootApplication
@EnableEurekaClient
public class FileApplication {

    public static void main(String[] args) {
        SpringApplication.run(FileApplication.class);
    }
}

你可能感兴趣的:(文件存储微服务搭建)