You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
S3 Property Loader has the aim of allowing loading of Spring property files from S3 bucket, in order to guarantee stateless machine configuration.
5
5
6
6
Spring PropertyConfigurer replaces standard PropertyConfigurer to load property files from AWS S3 bucket. S3 path could be specified directly into spring beans.
7
7
8
+
### Install
9
+
Gradle:
10
+
```groovy
11
+
compile "com.spring.loader:s3-loader:1.0.1"
12
+
```
13
+
Maven:
14
+
```xml
15
+
<dependency>
16
+
<groupId>com.spring.loader</groupId>
17
+
<artifactId>s3-loader</artifactId>
18
+
<version>1.0.1</version>
19
+
<type>pom</type>
20
+
</dependency>
21
+
```
22
+
### How to use
23
+
24
+
Declare a spring bean `S3PropertyPlaceholderConfigurer` using yours AWS credencials or AWS instance profile. e.i:
0 commit comments