🐕

【エラー体験】bean of type 'com.example. ~ ' that could not be found.

2024/12/15に公開

はじめに

・SpringBootを使った開発中に現れたエラーについてなかなか解決できなかったのでまとめました。

想定読者

SpringBoot初学者。

開発環境

SpringBoot
Thymeleaf

メインコンテンツ

現れたエラー

Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled.
2024-11-18T10:37:25.348+09:00 ERROR 28928 --- [ex-intermediate] [  restartedMain] o.s.b.d.LoggingFailureAnalysisReporter   : 

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

Description:

Field extractor in com.example.ex_bbs.controller.ArticleController required a bean of type 'com.example.ex_bbs.repository.ArticleResultSetExtractor' that could not be found.

The injection point has the following annotations:
        - @org.springframework.beans.factory.annotation.Autowired(required=true)


Action:

Consider defining a bean of type 'com.example.ex_bbs.repository.ArticleResultSetExtractor' in your configuration.

原因 & 解決方法

@Componentが足りなかった。

エラーの内容を見ると、
bean of type 'com.example. ~ ' that could not be found. と言われています。
私自身のBeanに対する認識が足りていませんでしたが、
よくあるのはアノテーションが足りていないということです。

同じようなエラーになった方は、 @Component@Autowired が抜けていないか確認してみてください。

感想

自力で解決できなかったため記事で残すことにしました。
誤り等あればコメント等で教えてください。
ご閲覧ありがとうございました。

Discussion