# file-common-server **Repository Path**: tanyajun/file-common-server ## Basic Information - **Project Name**: file-common-server - **Description**: 文件上传/下载server端 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-12-10 - **Last Updated**: 2022-07-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 文件上传服务端 ## 导入sql `./db/tb_file_meta.sql` > 此为MySQL转储文件,导入5.7版本最兼容 > > 如需其他版本,请自己修改 ## 配置修改 `application.yml` ```yaml spring: datasource: type: com.alibaba.druid.pool.DruidDataSource druid: driver-class-name: com.mysql.jdbc.Driver url: jdbc:mysql://{host}:{port}/{database}?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai username: * password: * ```