見つかりませんでしタイプ「はjava.lang.String型」の必要なBean内のコンストラクタのパラメータ0

ガネーシュ:

私は実際にその既存のコードは、私がgitのからチェックアウト午前、春のブート2.Xアプリケーションで春のバッチに取り組んでいます。アプリケーションを実行している間、それは私だけのために、以下のエラーに起因する失敗し、同じコードが他人のために働いています。

s.c.a.AnnotationConfigApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'inputItemReader' defined in file [C:\Users\XYZ\git\main\batch\CBatchProcessing\target\classes\com\main\batchprocessing\batch\reader\InputItemReader.class]: Unsatisfied dependency expressed through **constructor parameter 0; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'java.lang.String' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations**: {}


Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2018-10-16 23:23:37.411 ERROR 2384 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   : 

***************************
APPLICATION FAILED TO START
***************************

Description:

**Parameter 0 of constructor in com.main.batchprocessing.batch.reader.InputItemReader required a bean of type 'java.lang.String' that could not be found.**


Action:

Consider defining a bean of type 'java.lang.String' in your configuration.

私は、下記のチェックをしています

  1. すべての春のコンポーネントが正しくなど@Component、@Service、@コントローラー、@リポジトリ、と注釈を付けています...
  2. @ComponentScan&@EnableAutoCOnfigurationも提供されます。
  3. 宣言で「java.lang.Stringで」を与えてみました。

コード:

    import java.util.Map;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    import org.springframework.batch.core.ExitStatus;
    import org.springframework.batch.core.StepExecution;
    import org.springframework.batch.core.StepExecutionListener;
    import org.springframework.batch.item.file.FlatFileItemReader;
    import org.springframework.batch.item.file.mapping.JsonLineMapper;
    import 
    org.springframework.batch.item.file.separator.JsonRecordSeparatorPolicy;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.context.annotation.Bean;
    import org.springframework.core.io.FileSystemResource;
    import org.springframework.stereotype.Component;

    @Component
    public class InputItemReader extends  FlatFileItemReader<Map<String, 
     Object>> implements StepExecutionListener {

    @Autowired
    private InputFileHeaderValidator inputFileHeaderValidator; 

    @Autowired
    private FileAuditService fileAuditService;

    private final Logger log = 
    LoggerFactory.getLogger(InputItemReader.class);

    private java.lang.String inputFilePath;

    public InputItemReader(String inputFilePath) {
        setLineMapper(new JsonLineMapper());
        setRecordSeparatorPolicy(new JsonRecordSeparatorPolicy());
        setResource(new FileSystemResource(inputFilePath));
        this.inputFilePath = inputFilePath;
    }
   }
v_schoener:

あなたが公共のデフォルトコンストラクタを提供しないと、あなた自身の非デフォルトコンストラクタを追加しましたので、インスタンス化は失敗します。私のようなプロパティとして、入力ファイルパスを定義するためにあなたを示唆しているであろう@Value("${inputFilePath}")あなたの豆で、さらに初期化が必要な場合は、ボイドメソッドを定義し、それに注釈を付ける@PostConstructと内の初期化を行います。

おすすめ

転載: http://43.154.161.224:23101/article/api/json?id=172193&siteId=1