Spring Boot - 如何将application.yml属性定义为application.properties

时间:2018-02-19 16:50:38

标签: java spring amazon-web-services spring-boot amazon-s3

我目前正在尝试使用Spring Boot webapp设置一个s3存储桶来添加/删除图像。

我正在使用的指南使用以下application.yml属性:

amazonProperties:
  endpointUrl: https://s3.us-east-2.amazonaws.com
  accessKey: XXXXXXXXXXXXXXXXX
  secretKey: XXXXXXXXXXXXXXXXXXXXXXXXXX
  bucketName: your-bucket-name

如何在application.properties文件中定义这些属性?

非常感谢所有帮助,谢谢!

2 个答案:

答案 0 :(得分:9)

尝试在application.properties

中将它们分成不同的行
amazonProperties.endpointUrl= https://s3.us-east-2.amazonaws.com
amazonProperties.accessKey= XXXXXXXXXXXXXXXXX
amazonProperties.secretKey= XXXXXXXXXXXXXXXXXXXXXXXXXX
amazonProperties.bucketName= your-bucket-name

答案 1 :(得分:0)

如果您正在使用Spring Spring Cloud AWS Maven依赖项 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-aws</artifactId> </dependency>

<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-aws</artifactId> </dependency>文件中使用以下属性。

application.properties

引用:https://cloud.spring.io/spring-cloud-static/spring-cloud-aws/1.2.3.RELEASE/multi/multi__basic_setup.html