小编典典

如何在Spring Boot项目中的statup上创建目录

spring-boot

我正在创建一个目录,用于在启动时将所有上传的文件存储在我的spring boot应用程序中。

该目录的路径存储在application.properties文件中。我正在尝试读取此路径并在startupof项目上创建目录。在启动时创建目录时无法获取路径。

application.properties

upload.path = "/src/main/resources"

StorageProperties.java

import org.springframework.boot.context.properties.ConfigurationProperties;

@ConfigurationProperties(prefix = "upload")
public class StorageProperties {

    private String path;

    public String getPath() {
        return path;
    }

    public void setPath(String path) {
        this.path = path;
    }

}

阅读 420

收藏
2020-05-30

共1个答案

小编典典

  • 步骤1:使StorageProperties成为组件
  • 第2步:在StartUpComponent中自动连接该组件
  • 第三步:创建文件夹
    @Component
    @ConfigurationProperties(prefix = "upload")
    public class StorageProperties {

      private String path;

      // getters and setters
    }



    @Component
    public class StartupComponent implements CommandLineRunner {
       private final StorageProperties storageProps;

       public StartupComponent (StorageProperties storageProps){
         this.storageProps = storageProps;
       }

      @Override
      public void run(String... args) throws Exception {
         String path = storageProps.getPath();
         // do your stuff here
      }
    }
2020-05-30