对于常规 java 类,休眠 sessionFactory 在我的 DAO 中始终为空

Posted

技术标签:

【中文标题】对于常规 java 类,休眠 sessionFactory 在我的 DAO 中始终为空【英文标题】:The hibernate sessionFactory is always null in my DAO for a regular java class 【发布时间】:2013-09-27 18:55:18 【问题描述】:

我看到了很多关于此的问题,并尝试了许多不同解决方案的无数排列,但没有一个奏效。

我有一个需要休眠会话工厂来执行事务的 dao。在 SpringMVC 上下文中,我已经看到它工作但 java 类中包含的 dao 为空。 catalina.out 没有错误:

我的完整 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:tx="http://www.springframework.org/schema/tx"
   xmlns:context="http://www.springframework.org/schema/context"

   xsi:schemaLocation=
   "http://www.springframework.org/schema/beans 
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/tx 
    http://www.springframework.org/schema/tx/spring-tx.xsd
    http://www.springframework.org/schema/context 
    http://www.springframework.org/schema/context/spring-context.xsd">

<!-- Scan classpath for annotations (eg: @Service, @Repository etc)-->

<context:annotation-config/>

<context:component-scan base-package="com.shazam.di.*" />

<!-- JNDI Data Source. this works I can get to it independent of spring-->
<bean id="myDataSource" class="org.springframework.jndi.JndiObjectFactoryBean"
scope="singleton">
    <property name="jndiName" value="jdbc/dostudentdb"/>
    <property name="resourceRef" value="true"/>
</bean>

<tx:annotation-driven/>

<!-- Hibernate Session Factory -->
<bean id="mySessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
    <property name="dataSource" ref="myDataSource"/>
    <property name="packagesToScan">
    <array>
        <value>com.shazam.di.spring.coursemgmt.dao</value>
    </array>
    </property>
    <property name="hibernateProperties">
        <props>
            <prop key="hibernate.show_sql">false</prop>
            <!--<prop key="hibernate.hbm2ddl.auto">update</prop>-->
            <prop key="hibernate.dialect">org.hibernate.dialect.mysqlDialect</prop>
        </props>        
    </property>
</bean>

<!-- Hibernate Transaction Manager -->
<bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
    <property name="sessionFactory" ref="mySessionFactory"/>
</bean>

<!--I've alternated between contructor, properties for getters & setters --> 
<!--here, and nothing (just letting it get autowired into the private-->
<!--SessionFactory instance, no effing cigar!!-->
<bean id="studentDAO" class="org.shazam.di.spring.coursemgmt.dao.StudentDAO">
    <!--<constructor-arg type="SessionFactory" value="mySessionFactory"/>-->
    <property name="insertUserProfile" ref="insertUserProfile"/>
</bean>
</beans>

可以找到 DAO 而不是 sessionFactory 的类:

@Component
public class CheckClassAccess

    @Autowired 
    private static StudentDAO studentDAO;...

DAO 的开始(尝试 autwiring only getter & setter 和一个构造函数):

@Repository
@SuppressWarnings("unchecked", "rawtypes")
public class StudentDAO 

    @Autowired 
    private SessionFactory sessionFactory;
etc...

WEB XML Spring 行:

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath*:WEB-INF/applicationContext.xml</param-value>
</context-param>    
and then a little later...
<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener> 

对此唯一需要注意的是,我正试图让它在一个名为 Opencms 的开源 java cms 中工作。但不确定这是否相关,因为我正在连接的文件是 vanilla java 支持类,而不是控制器或任何东西(还没有真正想用它来做 Spring-MVC)。

事实上,所有这些都在一个单独的较小应用程序的 Spring MVC servlet-context 中工作,但我似乎无法让这些相同的对象/注释在 applicationContext 中注册。

【问题讨论】:

StudentDAO 在什么包中? 你如何评估 CheckClassAccess 对象以及这些类/这些类是否在 com.shazam.di 的子包下,并尝试在包扫描中删除 .* StudentDAO 在 com.shazam.di.spring.coursemgmt.dao 您不能依赖注入静态字段。去除现场的静电。 classpath*:WEB-INF/applicationContext.xml 应该是什么意思? WEB-INF 通常不包含在类路径中。如果它在 WEB-INF 中,我认为你应该只指定 WEB-INF/applicationcContext.xml。可能只是因为星量词而被默默地忽略了。 【参考方案1】:

如果你使用注解命名很重要。所以改变你的StudentDAO如下:

@Autowired
@Qualifier("mySessionFactory")
private SessionFactory sessionFactory;

更多解释请查看this。

或者Spring推荐@Resource注解:

@Resource("mySessionFactory")
private SessionFactory sessionFactory;

【讨论】:

很好的信息,但不是问题所在。我只有一个 SessionFactory 所以按类型应该没问题。公平地说,我最初提出的问题并不是问题所在。我在 Spring MVC 的 web.xml 中仍然引用了一个旧的调度程序 servlet,我已经将一些东西从它移到了 applicationContext.xml 中,它在抱怨。结果证明这是一条红鲱鱼,但在我删除了 servlet.xml 引用后,applicationContext.xml 无法静默注入任何东西,现在我正在上面的 cmets 中尝试解决方案。【参考方案2】:

我无法弄清楚发生了什么,但我通过提取 Spring 实现并直接使用 Hibernate 解决了我的问题。

仅使用 Hibernate 的返工很简单:

我添加了一个hibernate.cfg.xml和 我在我的 dao 方法中删除了一些 Spring 管理的事务注释,并手动添加了该事务管理 我添加了一个静态的最终 SessionFactory 单例,例如 https://***.com/a/15702946/1411545 我删除了 Spring 库和所有杂散的 Spring 注释。

整个过渡过程可能需要一个小时,效果很好,并且可以让我完成这个项目所需的一切。我认为我最初选择在这里使用 Spring 是一个错误的选择,无论什么起作用或不起作用。

感谢大家提供的许多有用的 cmets 和答案。

【讨论】:

以上是关于对于常规 java 类,休眠 sessionFactory 在我的 DAO 中始终为空的主要内容,如果未能解决你的问题,请参考以下文章

RTOS训练营队列的读写休眠和唤醒常规应用使用和晚课提问

RTOS训练营队列的读写休眠和唤醒常规应用使用和晚课提问

RTOS训练营队列的读写休眠和唤醒常规应用使用和晚课提问

从 java pojo 类生成休眠查询

休眠:外键的列数错误

Java - 休眠 - 查询 - 关联