我在这方面看到了很多问题,并尝试了许多不同解决方案的大量排列,但没有一个有效。
我有一个需要hibernate sessionfactory来执行事务的dao。在SpringMVC Context中我看到它工作但是java类中包含的dao是null。 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的开头(尝试仅依次使用getter&amp; 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上下文中工作,但我似乎无法在applicationContext中注册这些相同的对象/注释。
答案 0 :(得分:0)
如果您使用注释命名问题。因此,请按以下方式更改StudentDAO
:
@Autowired
@Qualifier("mySessionFactory")
private SessionFactory sessionFactory;
请查看this以获取更多解释。
或者Spring推荐@Resource
注释:
@Resource("mySessionFactory")
private SessionFactory sessionFactory;
答案 1 :(得分:0)
我无法弄清楚发生了什么,但是我通过拔出Spring实现并直接使用Hibernate解决了我的问题。
使用Hibernate的重新工作是直截了当的:
整个过渡可能需要一个小时才能正常运行,这将使我能够完成这个项目所需的一切。无论做什么或不做什么,我认为我在这里使用Spring做了一个糟糕的初选。
谢谢大家提供的许多有用的评论和答案。