无法注入sessionFactory

时间:2014-06-16 13:58:15

标签: java spring

尝试调试sessionFactory.getCurrentSession()时,sessionFactory null 。我假设Spring 3无法将sessionFactory注入此类,尽管所有配置似乎都已到位。如何解决?

ServiceOrderDAO:

@Transactional
public class ServiceOrderDAO{

@Autowired
    static
SessionFactory sessionFactory;

    public static List<ServiceOrderEntity> search(params...){
         Session localSession = sessionFactory.getCurrentSession();
        ...
    }
}

的applicationContext.xml:

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

    <context:annotation-config />

    <mvc:annotation-driven/>

    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="" />
        <property name="suffix" value=".jsp" />
    </bean>


    <context:component-scan base-package="controller" />
    <context:component-scan base-package="dao" />
    <context:component-scan base-package="service" />

    <context:property-placeholder location="classpath:dbConnection.properties" />

    <tx:annotation-driven transaction-manager="transactionManager"/>


    <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <property name="packagesToScan" value="model" />
    </bean>
    <bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>
    <!--<bean id="persistenceExceptionTranslationPostProcessor" class="org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor"/>-->

    <bean id="dataSource"  class="org.apache.commons.dbcp.BasicDataSource">
        <property name="driverClassName" value="${jdbc.driverClassName}" />
        <property name="url" value="${jdbc.url}" />
        <property name="username" value="${jdbc.user}" />
        <property name="password" value="${jdbc.pass}" />
    </bean>


    <bean id="jdbcTemplateBean" class="org.springframework.jdbc.core.JdbcTemplate">
        <property name="dataSource" ref="dataSource"/>
    </bean>

</beans>

2 个答案:

答案 0 :(得分:3)

我认为你有一些想要提及的事情:

  • SessionFactory不应该是静态的,如果您尝试将该类视为Spring bean,那么search方法也不应该是静态的。
  • 在课程中添加@Component@Repository注释。我不认为Spring会自动发送缺少类中刻板印象注释的类。
  • 您应该考虑将@Transactional注释移动到方法中,以便提供更细粒度的传播。例如,您的search方法可能不需要交易,因此您可能希望使用@Transactional(propagation = Propagation.SUPPORTS)。查看Spring documentation以获取解释各种注释以及在何处/如何注释交易的其他信息。

答案 1 :(得分:3)

sessionFactory是静态的肯定是问题的原因。你不能用spring注入静态字段。

在封面下,静态字段在构造函数被调用之前由类加载器初始化,因此在spring有机会注入任何东西之前。

您的服务类应该是事务性的,而不是您的服务。是的,您需要使用@Component@Service或类似内容进行注释。