我剛剛從春天3.2更新到春天4.0.0.RC2但運行測試時我現在得到以下厚望升級到春天4.0
org.springframework.beans.factory.NoSuchBeanDefinitionException
我DAO類
(NoSuchBeanDefinitionException)。自動裝配PersistenceContext(這是我們自己的泛型類)時失敗。
@Repository
public class AccountDaoImpl extends AbstractDao<Account> implements AccountDao {
@Autowired
public AccountDaoImpl(final PersistenceContext<Account> context) {
super(context);
}
...
如果我將版本更改回3.2一切正常。 4.0中導致這個問題的不同之處是什麼?
請發佈完整的堆棧跟蹤和PersistenceContext的bean定義。 –