Ошибка использования простых учетных данных в Spring Boot AWS Context - бин уже связан - PullRequest
0 голосов
/ 04 декабря 2018

Учитывая мой файл applicationContext.xml:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
		     xmlns:context="http://www.springframework.org/schema/context"
		     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
		     xmlns:aws-context="http://www.springframework.org/schema/cloud/aws/context"
		     xsi:schemaLocation="http://www.springframework.org/schema/beans 
		     http://www.springframework.org/schema/beans/spring-beans-4.1.xsd 
		     http://www.springframework.org/schema/context 
		     http://www.springframework.org/schema/context/spring-context-5.1.xsd
			 http://www.springframework.org/schema/cloud/aws/context 
			 http://www.springframework.org/schema/cloud/aws/context/spring-cloud-aws-context.xsd">

    <aws-context:context-credentials>
        <aws-context:instance-profile-credentials/>
        <aws-context:simple-credentials access-key="${aws.accessKeyId}" secret-key="${aws.secretKey}"/>
    </aws-context:context-credentials>
    
</beans>

И эта ошибка:

Компонент 'credentialsProvider', определенный в null, не может быть зарегистрирован.Компонент с таким именем уже определен в null, а переопределение отключено.

Что не так с xml?

...