2017-06-05 14 views
0

私は特定のプロファイルに対してのみawsクラウドを使用するSpringバッチアプリケーションを開発中です。現在、AWSとローカルデータベース、ローカルファイルなどを使用してアプリケーションをローカルで実行するときには使用しないでください(AWSプロファイルではRDS、S3などが使用されます)SpringブートアプリケーションでContextCredentialsAutoConfigurationを無効にできません

私localDevプロファイルの

@Configuration 
@Profile("!localDev") 

public class FileReaderConfigAWS { 

@Value("${cloud.aws.s3.bucket}") 
private String amazonS3Bucket; 

@Autowired 
private ResourceLoader resourceLoader; 

private static final Logger logger = LoggerFactory.getLogger(FileReaderConfigAWS.class); 


@Bean 
@StepScope 
public FlatFileItemReader<Object> flatFileReader(@Value("#{jobParameters['inputFile']}") String inputFile, LineMapper 
    lineMapper) { 
    FlatFileItemReader<Object> flatFileItemReader = new FlatFileItemReader<>(); 

    flatFileItemReader.setResource(resourceLoader.getResource("s3://" + this.amazonS3Bucket + "/" + inputFile)); 

    flatFileItemReader.setLineMapper(lineMapper); 

    return flatFileItemReader; 
} 


@Bean 
public AbstractFileValidator inputFileValidator() { 
    InputS3Validator inputS3Validator = new InputS3Validator(); 
    inputS3Validator.setRequiredKeys(new String[]{InputFileSystemValidator.INPUT_FILE}); 
    return inputS3Validator; 
} 

} 

私は、次のしている:

@Profile("localDev") 
@Configuration 
public class FileReaderConfigLocalDev { 


@Bean 
@StepScope 
public FlatFileItemReader<Object> flatFileReader(@Value("#{jobParameters['inputFile']}") String inputFile, LineMapper lineMapper) { 
    FlatFileItemReader<Object> flatFileItemReader = new FlatFileItemReader<>(); 
    flatFileItemReader.setResource(new FileSystemResource(inputFile)); 

    flatFileItemReader.setLineMapper(lineMapper); 

    return flatFileItemReader; 
} 

@Bean 
public AbstractFileValidator inputFileValidator() { 
    InputFileSystemValidator inputFileValidator = new InputFileSystemValidator(); 
    inputFileValidator.setRequiredKeys(new String[]{InputFileSystemValidator.INPUT_FILE}); 
    return inputFileValidator; 
} 

} 

私はlocalDevプロファイルを使用して春ブーツメインクラスを実行しよう(-Dspring.profiles.active=localDev)I AWSを使用すると、私は以下の持っているプロフィールフォールを取得する私は私はあなたがのpom.xmlに春 - クラウドAWS-自動設定を追加すると、その後、実行時に非AWS環境のためのAWSの自動構成を無効にする方法はないように思えることがわかったデバッグを開始したよう

Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'amazonS3': Invocation of init method failed; nested exception is java.lang.IllegalStateException: There is not 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.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1628) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE] 
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:555) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE] 
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:483) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE] 
    at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:306) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE] 
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE] 
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE] 
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE] 
    at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:351) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE] 
    ... 18 common frames omitted 
Caused by: java.lang.IllegalStateException: There is not 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:70) ~[spring-core-4.3.7.RELEASE.jar:4.3.7.RELEASE] 
    at org.springframework.cloud.aws.core.region.Ec2MetadataRegionProvider.getRegion(Ec2MetadataRegionProvider.java:39) ~[spring-cloud-aws-core-1.2.1.RELEASE.jar:1.2.1.RELEASE] 
    at org.springframework.cloud.aws.core.config.AmazonWebserviceClientFactoryBean.createInstance(AmazonWebserviceClientFactoryBean.java:98) ~[spring-cloud-aws-core-1.2.1.RELEASE.jar:1.2.1.RELEASE] 
    at org.springframework.cloud.aws.core.config.AmazonWebserviceClientFactoryBean.createInstance(AmazonWebserviceClientFactoryBean.java:44) ~[spring-cloud-aws-core-1.2.1.RELEASE.jar:1.2.1.RELEASE] 
    at org.springframework.beans.factory.config.AbstractFactoryBean.afterPropertiesSet(AbstractFactoryBean.java:134) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE] 
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1687) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE] 
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1624) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE] 
    ... 25 common frames omitted 

:エラーにより。
私は次のことを試してみました:

@EnableAutoConfiguration(exclude = {ContextCredentialsAutoConfiguration.class, ContextStackAutoConfiguration.class}) 

それでも、任意のアイデア誰もが動作しないのだろうか?

ありがとうございます!

答えて

2

spring cloud Brixton.SR7のバージョンでは、application.properties(または使用しているものは.xml、.yml)に設定する領域を手動で設定します。あなたが本当に指定する必要がない限り、このパラメータはあなたのdev envのためだけにあるべきです。

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

また、私はdevに関する次のプロパティを設定しなければならなかったが、多分あなたはそれを必要といけません。最後にhttp://cloud.spring.io/spring-cloud-static/spring-cloud-aws/1.1.4.RELEASE/#_region_configuration

+0

ありがとう@leOdiaz!それを考えた後、自動設定では利益よりもトラブルが増えていたので、それなしで進めることにしました。あなたの助けに感謝! – vanvasquez

0

cloud.aws.stack.auto=false 

より多くの参照情報私のpom.xmlから完全に春 - クラウドAWS-自動構成の依存関係を削除することを決めました。

<beans xmlns="http://www.springframework.org/schema/beans" 
    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/cloud/aws/context 
         http://www.springframework.org/schema/cloud/aws/context/spring-cloud-aws-context-1.0.xsd"> 

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

    <aws-context:context-region region="${cloud.aws.region.static:}"/> 
    <aws-context:context-resource-loader/> 
</beans> 

と、私は次のようにAWS環境を使用するJava構成ファイルに上記のファイルを参照しています:
は、私には、以下の情報を資源の下でAWS-config.xmlファイルを作成し

@Configuration 
@Profile("!localDev") 

@ImportResource("classpath:/aws-config.xml") 
public class FileReaderConfigAWS { 

    @Value("${cloud.aws.s3.bucket}") 
    private String amazonS3Bucket; 

    @Autowired 
    private ResourceLoader resourceLoader; 
... 
+0

これを共有していただきありがとうございます。公式の文書には、春の雲から始まる人々のためのこの種の情報が欠けており、春雲の始動プロジェクトからの未使用の豆をたくさん載せたり、自動設定したりしたくない。 – le0diaz

関連する問題