У меня есть Hibernate DAO , в соответствии с Hibernate API 3 и Spring 3.x , я использую просто sessionFactory
и НЕ HibernateDaoSupport
+ getHibernateTemplate()
- я надеюсь, что это хороший выбор ... -
Теперь моя цель состоит в том, чтобы автоматически подключить sessionFactory
к моему DAO с использованием аннотаций.
В моем spring.xml
у меня есть это:
<context:component-scan base-package="data" />
Внутри пакета данных у меня есть все мои классы DAO и Service.
Это мой простой HibernateDao
:
@Repository
public class PersonHDAO implements PersonDAO {
private SessionFactory sessionFactory;
@Autowired
public void setSessionFactory(SessionFactory sessionFactory) {
this.sessionFactory = sessionFactory;
}
public List<Person> findAll(){
return sessionFactory.getCurrentSession().createQuery("bla bla").list();
}
}
У меня нет ошибок при spring.xml
загрузке, но sessionFactory
все еще будет null
.
Что мне делать?
РЕДАКТИРОВАТЬ
Это мое sessionFactory
объявление в spring.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-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/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<!-- <property name="driverClassName" value="org.h2.Driver" /> -->
<property name="url" value="my/db/url" />
<property name="username" value="myUsername" />
<property name="password" value="myPassword" />
</bean>
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="packagesToScan" value="data" />
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.H2Dialect</prop>
<prop key="hibernate.current_session_context_class">thread</prop>
<prop key="hibernate.transaction.factory_class">org.hibernate.transaction.JDBCTransactionFactory</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
</props>
</property>
</bean>
<context:component-scan base-package="data" />
<tx:annotation-driven/>
<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
</beans>
EDIT2 Теперь sessionFactory
не является нулевым, но у меня есть другоеТип исключения:
org.springframework.beans.factory.NoSuchBeanDefinitionException: No unique bean of type [data.PersonHDAO] is defined: expected single bean but found 0:
Может быть, это означает, что он не может найти PersonHDAO
боб?
Спасибо всем.