【问题标题】:Spring can't find bean named entityManagerFactorySpring找不到名为entityManagerFactory的bean
【发布时间】:2011-12-23 02:47:12
【问题描述】:

我有一个使用 spring 和 hibernate 来支持 JPA 的 Web 应用程序,但是当我打开我的索引页面时会发生此异常:

http://pastebin.com/0X1GG9GQ

但我认为我的 applicationContext.xml 配置良好,但我还是发布它只是为了确定:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
    xmlns:tx="http://www.springframework.org/schema/tx" xmlns:p="http://www.springframework.org/schema/p"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-3.0.xsd
           http://www.springframework.org/schema/tx
           http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
           http://www.springframework.org/schema/aop
           http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
            ">

    <!-- properties file for jdbc database access details / -->
    <context:property-placeholder location="classpath:jdbc.properties" />

    <!-- enabling annotation driven configuration / -->
    <context:annotation-config />

    <context:component-scan base-package="com.maegul" />

    <tx:annotation-driven transaction-manager="transactionManager" />
    <bean
        class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor" />

    <bean id="dataSource"
        class="org.springframework.jdbc.datasource.DriverManagerDataSource"
        p:driverClassName="${jdbc.driverClassName}" p:url="${jdbc.url}"
        p:username="${jdbc.username}" p:password="${jdbc.password}" />


    <bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager"
        p:entityManagerFactory-ref="entityManagerFactory" />

    <bean id="entityManagerFactory"
        class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"
        p:dataSource-ref="dataSource" p:jpaVendorAdapter-ref="jpaAdapter">
        <property name="loadTimeWeaver">
            <bean
                class="org.springframework.instrument.classloading.InstrumentationLoadTimeWeaver" />
        </property>
        <property name="persistenceUnitName" value="maegul"></property>
    </bean>

    <bean id="jpaAdapter"
        class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"
        p:database="${jpa.database}" p:showSql="${jpa.showSql}" />

</beans>

我真的不知道出了什么问题,我一直在改变一些小事情,但无济于事,任何帮助将不胜感激。

EDIT(pastebin 中的长堆栈以便于阅读...)

更改了 ApplicationContext.xml 中的一些内容,现在我得到了不同的堆栈跟踪:

INFO  - Server                     - jetty-7.5.0.v20110901
INFO  - tandardDescriptorProcessor - NO JSP Support for {}, did not find {}
INFO  - /                          - Initializing Spring root WebApplicationContext
INFO  - ContextLoader              - Root WebApplicationContext: initialization started
INFO  - XmlWebApplicationContext   - Refreshing Root WebApplicationContext: startup date [Sun Nov 06 13:22:53 COT 2011]; root of context hierarchy
INFO  - XmlBeanDefinitionReader    - Loading XML bean definitions from ServletContext resource [/WEB-INF/ApplicationContext.xml]
INFO  - DefaultListableBeanFactory - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@40871449: defining beans [maegulApplication,itemService,userService,cartItemDao,mediaItemDao,mediaSourceDao,passwordDao,userDao,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.annotation.internalPersistenceAnnotationProcessor]; root of factory hierarchy
INFO  - DefaultListableBeanFactory - Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@40871449: defining beans [maegulApplication,itemService,userService,cartItemDao,mediaItemDao,mediaSourceDao,passwordDao,userDao,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.annotation.internalPersistenceAnnotationProcessor]; root of factory hierarchy
ERROR - ContextLoader              - Context initialization failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'itemService': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.maegul.data.dao.impl.MediaItemDao com.maegul.service.implementation.ItemFindService.mediaItemDao; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'mediaItemDao': Injection of persistence dependencies failed; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No unique bean of type [javax.persistence.EntityManagerFactory] is defined: expected single bean but found 0

堆栈的其余部分:http://pastebin.com/u82n3C5n

我看到我所做的注释正在被识别,但看起来它仍然找不到 entityManagerFactory。我看到的一件事是,我应该在EntityManager 字段中使用@PersistenceUnit 而不是使用@PersistenceContext,但我不知道...

编辑 2

我所有的 DAO 实现都是这样的:

import java.util.List;

import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import javax.persistence.Query;

import org.springframework.stereotype.Repository;

import com.maegul.data.dao.AbstractDAO;
import com.maegul.data.entities.MediaItem;

@Repository(value = "mediaItemDao")
public class MediaItemDaoImpl extends AbstractDAO<MediaItem> implements
        MediaItemDao {

    @PersistenceContext
    private EntityManager em;

    /*
     * (non-Javadoc)
     * 
     * @see com.maegul.data.dao.DAO#getEntityManager()
     */
    public EntityManager getEntityManager() {
        return em;
    }

    /*
     * (non-Javadoc)
     * 
     * @see com.maegul.data.dao.DAO#getClazz()
     */
    public Class<MediaItem> getClazz() {
        return MediaItem.class;
    }

    /*
     * (non-Javadoc)
     * 
     * @see com.maegul.data.dao.impl.MediaItemDao#findByName(java.lang.String)
     */
    public MediaItem findByName(String name) {
        Query q = getEntityManager().createQuery(
                "select u from " + getClazz() + " where u.name = :name");
        q.setParameter("name", name);

        return (MediaItem) q.getSingleResult();
    }

    /*
     * (non-Javadoc)
     * 
     * @see com.maegul.data.dao.impl.MediaItemDao#findByType(java.lang.String)
     */
    @SuppressWarnings("unchecked")
    public List<MediaItem> findByType(String type) {
        Query q = getEntityManager().createQuery("select u from " + getClazz() + " where u.type = :type");
        q.setParameter("type", type);

        return q.getResultList();
    }
}

编辑 3

这是 AbstractDAO 类:http://pastebin.com/f2BQG9RE

这是DAO接口,由AbstractDAO实现:http://pastebin.com/h7dAHTTC

这是接口 MEdiaItemDao:

import java.util.List;

import com.maegul.data.dao.DAO;
import com.maegul.data.entities.MediaItem;

public interface MediaItemDao extends DAO<MediaItem>{

    MediaItem findByName(String name);

    List<MediaItem> findByType(String type);
}

【问题讨论】:

  • 一切看起来都很好。检查服务器是否正确并正确启动。检查 applicationContext.xml 是否真的加载到 spring 根应用程序上下文中。如果这没有帮助,请在 OpenEntitzMangerInViewFilter 类中设置断点。
  • @Ralph 感谢您的回复,正在加载 ApplicationContext.xml,看看我得到的新堆栈,但它仍然没有加载 EntityManeager 所以我不知道是什么去做
  • 请张贴mediaItemDao,如果是通过xml连接的,那么也是xml的相应图片。
  • @Ralph 它通过注释而不是通过 xml 连接
  • 我的意思不是 MediaItemDao 的接口,我是指它的实现 (com.maegul.data.dao.impl.MediaItemDao) 。我们需要看看注入是否正确。

标签: spring jpa entitymanager


【解决方案1】:

它只需要一个干净的项目,所以我做了并且它修复了它。

【讨论】:

    猜你喜欢
    • 2019-05-24
    • 2019-07-16
    • 2018-07-03
    • 2018-04-02
    • 2018-03-01
    • 2018-10-27
    • 1970-01-01
    • 2021-07-08
    • 2020-06-20
    相关资源
    最近更新 更多