3

我继承了一个项目,并正在尝试针对内存中的 h2 数据库运行一组集成测试。为了让他们传递一些表,需要创建关系和参考数据。

我可以看到其中引用的脚本RUNSCRIPT被多次执行并因此产生Index "XXX_IDX" already exists错误和其他违规行为的问题。那么有没有办法强制脚本只运行一次,还是我需要一个外部数据库?似乎该脚本在我认为是设计使然的每个连接上运行。

属性文件

my.datasource.url=jdbc:h2:mem:my_db;DB_CLOSE_DELAY=-1;MODE=Oracle;MVCC=TRUE;INIT=RUNSCRIPT FROM 'classpath:/create-tables-and-ref-data.sql'

XML 配置

<bean id="myDataSource" class="org.apache.commons.dbcp.BasicDataSource">
    <property name="url" value="${my.datasource.url}"/>
    <!-- other properties for username, password etc... -->
</bean>

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

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

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

以下模式中的许多 Java 类

@Component
public class SomethingDAOImpl implements SomethingDAO {
  @Autowired
  public SomethingDAOImpl(JdbcTemplate jdbcTemplate) {
    this.jdbcTemplate = jdbcTemplate;
  }
}

@Component
public class SomethingElseDAOImpl implements SomethingElseDAO {
  @Autowired
  public SomethingElseDAOImpl(JdbcTemplate jdbcTemplate) {
    this.jdbcTemplate = jdbcTemplate;
  }
}

默认 bean 范围是单例的,我认为这会起作用,但我想我错过了一些东西。此外,如果我切换到已经设置了表和参考数据的真实 Oracle 实例,则测试全部通过。

4

2 回答 2

2

在许多情况下,可以编写 SQL 脚本以便不引发异常:

create table if not exists test(id int, name varchar(255));
create index if not exists test_idx on test(name);
于 2012-12-29T20:20:39.683 回答
1

我最终使用了另一种方法,因为我无法以可以重新应用而不会出错的方式编写 SQL。

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:jdbc="http://www.springframework.org/schema/jdbc"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
    http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd">

    <jdbc:initialize-database data-source="myDataSource" enabled="true" ignore-failures="ALL">
        <jdbc:script location="classpath:create-and-alter-tables-first-then-add-test-data.sql" />
    </jdbc:initialize-database>
</beans>

在上下文初始化时执行一次。

注意:为简洁起见,省略了其他名称空间和 bean。

于 2013-01-10T10:12:34.167 回答