禁用春季云 AWS 自动配置以进行本地开发

2022-09-01 23:30:05

我使用以下 Maven 依赖项,它会自动配置所有必要的参数,以使我的项目在 AWS 上工作:

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-aws</artifactId>
    <version>1.2.2.RELEASE</version>
</dependency>

根据AWS,我没有任何关键功能,只是在运行时从S3加载一些文件。因此,在本地开发(以及测试)期间,我不需要任何AWS自动配置。

在本地运行时得到的逻辑错误是:

...
Caused by: java.lang.IllegalStateException: There is no EC2 meta data available, because the application is not running in the EC2 environment. Region detection is only possible if the application is running on a EC2 instance
    at org.springframework.util.Assert.state(Assert.java:392) ~[spring-core-4.3.2.RELEASE.jar:4.3.2.RELEASE]
    at org.springframework.cloud.aws.core.region.Ec2MetadataRegionProvider.getRegion(Ec2MetadataRegionProvider.java:39) ~[spring-cloud-aws-core-1.2.2.RELEASE.jar:1.2.2.RELEASE]
    at org.springframework.cloud.aws.core.config.AmazonWebserviceClientFactoryBean.createInstance(AmazonWebserviceClientFactoryBean.java:98) ~[spring-cloud-aws-core-1.2.2.RELEASE.jar:1.2.2.RELEASE]
    at org.springframework.cloud.aws.core.config.AmazonWebserviceClientFactoryBean.createInstance(AmazonWebserviceClientFactoryBean.java:44) ~[spring-cloud-aws-core-1.2.2.RELEASE.jar:1.2.2.RELEASE]
...

是否有适用于测试和本地开发的干净、有效的解决方案?


答案 1

我已经使用surefire插件为测试解决了这个问题:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.21.0</version>
    <configuration>
        <classpathDependencyExcludes>
            <classpathDependencyExcludes>org.springframework.cloud:spring-cloud-aws-autoconfigure</classpathDependencyExcludes>
        </classpathDependencyExcludes>
    </configuration>
</plugin>

解决了将以下变量设置为VM参数或在Spring Cloud配置服务器中设置本地开发的问题:

cloud.aws.region.auto=false
cloud.aws.region.static=us-east-1

可以使用 的任何值,但必须有一个值。cloud.aws.region.static

我在不同的地方阅读了这两种解决方案,并认为将来可能会帮助某人在这里看到它们的组合。


答案 2

推荐