Skip to content

存储模块:本地存储

简介

continew-starter-storage-local 是 ContiNew Starter 存储模块针对本地存储的默认处理,底层基于 Spring 静态资源映射。

xml
<dependency>
    <groupId>top.continew</groupId>
    <artifactId>continew-starter-storage-local</artifactId>
</dependency>

主要特性

  • 版本锁定:涉及依赖已进行版本锁定,使用时无需配置版本
  • 简单的配置即可完成静态资源映射

配置示例

配置详情请查看:top.charles7c.continew.starter.storage.local.autoconfigure.LocalStorageProperties

yaml
--- ### 存储配置
continew-starter:
  storage:
    ## 本地存储
    local:
      enabled: true
      mapping:
        FILE:
          path-pattern: /file/**
          location: C:\${project.app-name}\data\file\
          max-file-size: 10MB
        AVATAR:
          path-pattern: /avatar/**
          location: C:\${project.app-name}\data\avatar\
          max-file-size: 5MB

核心依赖

依赖描述
continew-starter-core