Eddú Meléndez Gonzales
Eddú Meléndez Gonzales
imports said `"org.springframework.beans.factory.config.ConfigurableBeanFactor"` instead of `"org.springframework.beans.factory.config.ConfigurableBeanFactory"`
Hi, I will be taking care of this implementation. I would like to discuss the following approach 1. Use `com.github.docker-java:docker-java-transport-zerodep` to deal with the communication and do not reinvent the...
> Does that library work without any Docker component in host or target? right, no docker installation is required. It talks directly to the daemon that it is configured. >...
Maybe https://github.com/spring-cloud/spring-cloud-aws/issues/601 is kind of related.
I currently have tested this ``` @RefreshScope @RestController public class HelloRestController { @Value("${hello.secretmessage}") private String hello; @GetMapping("/hello/{name}") public String hello(@PathVariable String name) { return this.hello + " " + name;...
I think you are interesting in https://github.com/spring-cloud/spring-cloud-aws/pull/617
using the `AmazonS3Client` will require to use the classes for request and response for every operation we want to perform. Instead `S3Template` will be an abstraction where just `s3Template.create(bucket)` can...
Hi @Kraignos you can use `DataSourceAutoConfiguration` from `spring-boot` which means using `spring.datasource.*` configuration properties. Wondering if you are using `spring-cloud-aws-jdbc` for any special reason?
@rieckpil you can use branch `2.3.x`
Are you using it together with `spring-cloud-bus`? We may have to work on that. My bet is that we will need something like `spring-cloud-bus-sqs` integration module on top of `spring-cloud-aws-sqs`...