一切都开始了,因为Spring Cloud AWS没有正确配置SimpleStorage原型解决方案。此类负责在使用ResourceLoader时处理s3://协议。有关更多详细信息,请参阅问题:无法在Spring AWS示例上强制转换为org.springframework.core.io.WritableResource。
所以,我不得不手动创建它。但我也在使用LocalStack解决方案(https://github.com/localstack/localstack),由于Spring Cloud AWS没有手动配置endpoint的选项,所以我不得不(猜猜怎么着?)手动创建AmazonS3Client。
问题来了,当我在类S3Configuration类(见下文)中创建两个bean时,Spring框架只是跳过bean创建。并且,当我尝试将其连接到S3Handler类(见下文)时,会发生以下错误:创建名为“amazonS3Client”的bean时出错:请求的bean当前正在创建中:是否存在无法解析的循环引用?
但是,整个事情又来了,这些类之间没有循环引用。
我已经简化了这个项目,所以我可以把它贴在这里:
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.7.RELEASE</version>
<relativePath/>
</parent>
<groupId>io.mobi7.ms</groupId>
<artifactId>mobi7-temp-ms-ibutton-worker</artifactId>
<version>1.0.0-SNAPSHOT</version>
<properties>
<spring-cloud-version>2.1.4.RELEASE</spring-cloud-version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-aws</artifactId>
<version>${spring-cloud-version}</version>
</dependency>
</dependencies>
</project>
S3Configuration.java
package io.mobi7.ms.ibutton.worker;
import com.amazonaws.auth.AWSCredentialsProvider;
import com.amazonaws.client.builder.AwsClientBuilder;
import com.amazonaws.services.s3.AmazonS3;
import com.amazonaws.services.s3.AmazonS3ClientBuilder;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.cloud.aws.core.io.s3.SimpleStorageProtocolResolver;
import org.springframework.cloud.aws.core.region.RegionProvider;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.io.DefaultResourceLoader;
@Configuration
public class S3Configuration {
@Bean("amazonS3Client") // THIS METHOD IS NOT BEING CALLED!!!
public AmazonS3 amazonS3Client(AWSCredentialsProvider credentialsProvider,
RegionProvider regionProvider,
@Value("${cloud.aws.s3.default-endpoint}") String endpoint) {
return AmazonS3ClientBuilder.standard()
.withCredentials(credentialsProvider)
.withEndpointConfiguration(
new AwsClientBuilder.EndpointConfiguration(endpoint, regionProvider.getRegion().getName()))
.build();
}
@Autowired // THIS METHOD IS NOT BEING CALLED!!!
public void configureResourceLoader(@Qualifier("amazonS3Client") AmazonS3 amazonS3Client,
DefaultResourceLoader resourceLoader) {
SimpleStorageProtocolResolver simpleStorageProtocolResolver = new SimpleStorageProtocolResolver(amazonS3Client);
// As we are calling it by hand, we must initialize it properly.
simpleStorageProtocolResolver.afterPropertiesSet();
resourceLoader.addProtocolResolver(simpleStorageProtocolResolver);
}
}
S3手.java
package io.mobi7.ms.ibutton.worker;
import com.amazonaws.services.s3.AmazonS3;
import com.amazonaws.services.s3.model.S3ObjectSummary;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Component;
import java.util.List;
import java.util.stream.Collectors;
@Component
public class S3Handler {
private AmazonS3 amazonS3Client;
@Autowired
public S3Handler(@Qualifier("amazonS3Client") AmazonS3 amazonS3Client) {
this.amazonS3Client = amazonS3Client;
}
public List<String> listFiles(String bucketName) {
return amazonS3Client.listObjects(bucketName).getObjectSummaries().stream().map(S3ObjectSummary::getKey)
.collect(Collectors.toList());
}
}
Application.java
package io.mobi7.ms.ibutton.worker;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.WebApplicationType;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
@SpringBootApplication
public class Application {
public static void main(String[] args) {
new SpringApplicationBuilder(Application.class).web(WebApplicationType.NONE).run(args);
}
@Autowired
public void listFiles(S3Handler s3Handler) {
s3Handler.listFiles("default-s3-bucket").forEach(System.out::println);
}
}
application.properties
cloud.aws.region.static=us-east-1
cloud.aws.stack.auto=false
cloud.aws.s3.default-endpoint=http://localhost:4572
有什么想法吗,为什么会这样?
@Autowired
注释标记构造对象状态的方法(例如setter或方法注入)。请参阅此处的“自动连接方法”部分。
使用“自动连线”注释的这两种方法都不用于此需求。
这个问题是关于Spring的。可以移除所有其他标签。
更新:此处介绍了类似的情况。
无论那里有什么建议,我都不会保留单个GOD配置类,而是将您的配置类拆分为2个类 - S3客户端的工厂和资源加载程序的配置。
我有一个批处理配置。我看到批处理过程默认使用。相反,我需要使用MySQL按批处理发送所有执行细节。但是当我使用以下代码时,我收到以下错误, 创建名称为“batchDataSource”的 Bean 时出错:请求的 Bean 当前正在创建中:是否存在无法解析的循环引用? 在我正在使用属性文件中, 我错过了什么?我正在使用JPA。甚至为什么它不使用可用的JPA数据源?如何在MemoryMap中强制Sp
我正在从事SpringBoot与Spring集成项目。升级应用程序时,我遇到以下错误(仅在pivotal cloud上,而不是本地)- 上下文初始化期间遇到异常-取消刷新尝试:org。springframework。豆。工厂未满足的依赖项异常:创建名为“cloudDataBaseConfiguration”的bean时出错:通过字段“cloud”表示未满足的依赖项:创建名为“cloudMultiH
我已经在我的Spring Boot应用程序中实现了一个调度程序例程,使用Quartz Scheduler遵循本教程(sping-boo-quitz-demo),并为我的目的做了一些修改。 例如,我的作业服务必须能够列出数据库中的所有对象及其子对象,设置新值并最终更新。所有这些都必须是事务性的。 出于某种原因,MyWork类不允许在其中声明事务性方法,所以我通过注入一个带有事务性方法的新服务类来解决
我有以下错误:创建名为'securityConfig'的bean时出错:请求的bean当前正在创建中:是否有不可解析的循环引用? 我该怎么解决呢?
当打开同时使用这两个bean的页面时,我会看到异常: 请告知如何修复此异常。 编辑:我尝试使用setter注入,正如答案中所引用的那样
原因:org.springframework.beans.factory.UnsatisfiedDependencyException:创建名为“Hibernate Configuration”的bean时出错:通过字段“ReadDataSource01”表示的不满足依赖项;嵌套异常为org.springframework.beans.factory.BeanCreationException:创