2 つの Bean を宣言し、Spring 依存性注入を使用してそれらをインスタンス化したいですか?
<bean id="sessionFactory" class="SessionFactoryImpl">
<property name="entityInterceptor" ref="entityInterceptor"/>
</bean>
<bean id="entityInterceptor" class="EntityInterceptorImpl">
<property name="sessionFactory" ref="sessionFactory"/>
</bean>
しかし、Spring は「現在作成中の FactoryBean が getObject から null を返しました」という例外をスローします。
ここで相互に依存する Bean の配線が機能しないのはなぜですか? どこでも遅延プロパティバインディングを指定する必要がありますか?