Spring Data JPA を使用して Spring MVC アプリを開発しています。JPAリポジトリを構築しました。
public interface AccessReportRepository extends JpaRepository<AccessReport, Long> {
}
プロジェクトでは、JPA とともに Spring Data Mongo も使用しています。
プロジェクトを実行すると、このエラーが発生します。
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'lastDateController': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.innolabmm.software.mongotest.springrest.ReadingService com.innolabmm.software.mongotest.springrest.LastDateController.readingService; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'readingService': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.innolabmm.software.mongotest.springrest.AccessReportRepository com.innolabmm.software.mongotest.springrest.ReadingService.reportRepository; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'accessReportRepository': FactoryBean threw exception on object creation; nested exception is org.springframework.data.mapping.PropertyReferenceException: No property flush found for type void
何が起こっているのか誰にも分かりますか?これが問題の解決に役立つ場合は、より多くの情報を提供する準備ができています. 前もって感謝します。