I次のエラーを持っている:例外は、コンテキストの初期化中に発生した - キャンセルリフレッシュしよう:org.springframework.beans.factoryを
にHomeController:
UnsatisfiedDependencyException: Error creating bean with name 'homeController': Unsatisfied dependency expressed through field 'productDao'
のSessionFactory:
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory': Failed to introspect bean
エラーのスクリーンショット:http://prntscr.com/ejjtp5
エラーメッセージとコード –
の注釈を使用している場合は、ProductDaoクラスに@Componentというアノテーションが付いていることを確認してください。もしそうでなければ、Springはそのクラスについて知りませんし、依存関係を解決できませんProductDao productDao – jmw5598
@Componentアノテーションを試してみました。 最初の部分のapplicationContext.xmlクラスのスクリーンショットです:http://prntscr.com/ejk4v3 –