2014-01-07 43 views
1

我正在尝试为我的Spring MVC应用程序设置H2内存数据库的测试。使用Spring MVC进行Hibernate配置测试

现在,我所有用于Hibernate的配置都在一个Java文件PersistenceConfig.java中,它拥有所有Hibernate配置的SessionFactory

但是,我的测试环境是XML,因为它更容易 - 有什么方法可以使这项工作?现在,当我运行我的测试时,我所得到的只是错误,因为它无法连接到MySQL,它甚至不应该尝试这样做。

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

    <!-- annotation support --> 
    <context:annotation-config/> 

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

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

    <!-- H2 datasource --> 
    <bean id="dataSource" 
     class="org.springframework.jdbc.datasource.DriverManagerDataSource"> 
    <property name="driverClassName" value="org.h2.Driver"/> 
    <property name="url" value="jdbc:h2:mem:test;MODE=MySQL;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=TRUE"/> 
    <property name="username" value="sa"/> 
    <property name="password" value=""/> 
    </bean> 

    <jdbc:initialize-database data-source="dataSource" ignore-failures="DROPS"> 
    <jdbc:script location="classpath:reset_database.sql"/> 
    <jdbc:script location="classpath:create_testdata.sql"/> 
    </jdbc:initialize-database> 

    <bean id="transactionManager" 
     class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> 
    <property name="dataSource" ref="dataSource"/> 
    </bean> 

    <bean id="sessionFactory" 
     class="org.springframework.orm.hibernate4.LocalSessionFactoryBean"> 
    <property name="dataSource" ref="dataSource"/> 
    </bean> 

    <bean id="persistenceConfig" class="com.package.configuration.PersistenceConfig"/> 
    <bean id="userDao" class="com.package.models.user.UserDao"/> 
</beans> 

我的测试类是什么样子

@RunWith(SpringJUnit4ClassRunner.class) 
@ContextConfiguration(locations = {"/test-context.xml", 
    "classpath:/spring/spring-security.xml"}) 
@Transactional 
public class UserTest { 
    private UserDao userDao = new UserDao(); 

    private static User user; 

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

    @BeforeClass 
    public static void initUser() { 
    user = new User(...); 
    } 

    @Test 
    public void testSave() throws Exception { 
    userDao.save(user); 
    User foundUser = userDao.findByUuid(user.getUuid()); 
    assertEquals(foundUser.getUuid(), user.getUuid()); 
    } 
} 

sessionFactory没有被自动装配Autowired和userDao从来没有得到它。

我的UserDao在其构造函数中调用PersistenceConfig.sessionFactory(),而PersistenceConfig为它提供对应于MySQL的sessionFactory。我需要以某种方式将其切换为H2 sessionFactory

我对这个完全错误吗?

回答

0

看来,当你注射你sessionFactory它与它加载PersistenceConfig.java,通常当你注入一个对象时,其他依赖项也被注入。如果我是你,我会用hibertane.hbm.xml来配置你测试连接时,它会覆盖所有其他配置...

+0

嗯,我的'sessionFactory'是没有得到自动装配在所有 - 它为空。 – AVP

+0

您可以尝试将JNDI名称设置为H2 dataSource,然后在测试类中放置一个断点,并尝试从上下文中获取此数据源以查看它是否已创建。只是一个想法... – lauksas

0

您所创建的UserDao对象自己

private UserDao userDao = new UserDao(); 

春天只能注入一个对象,其生命周期也管理。

如果您有一个(或者如果您没有添加一个),则从您的上下文(@Autowired it)获取一个UserDao bean。

+0

但我不想Autowire'UserDao'。我正在尝试Autowire'sessionFactory'。 – AVP

+0

@AVP是'UserTest'的'sessionFactory' nulll或'UserDao'的? Spring不能将bean注入到它不能控制的对象中。 –

0

测试你可以使用你的PersistenceConfig。相反,建立一个完整的新背景下的我会在不同的豆分成@Profile配置:

@Profile("test") 
@Configuration 
public class TestConfig { 

    @Bean public DataSource dataSource() { 
     // return Test bean 
    } 

} 

@Profile("production") 
@Configuration 
public class ProductionConfig { 

    @Bean public DataSource dataSource() { 
     // return productiv bean 
    } 

} 

@ActiveProfiles("test") 
public class DatasourceTest { 

    @Test 
    public void test() { 
     // assertions 
    } 

} 
相关问题