gpt4 book ai didi

spring-mvc - 为@Autowired jdbcTemplate 和 h2 内存数据库执行多次运行脚本

转载 作者:行者123 更新时间:2023-12-04 04:01:20 28 4
gpt4 key购买 nike

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

我可以看到问题在于 RUNSCRIPT 中引用的脚本被多次执行,因此生成了 Index "XXX_IDX"already exists 错误和其他违规行为。那么有没有办法强制脚本只运行一次或者我需要一个外部数据库?似乎脚本在我假设为 by design 的每个连接上运行.

属性文件

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 实例,则测试全部通过。

最佳答案

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

create table if not exists test(id int, name varchar(255));
create index if not exists test_idx on test(name);

关于spring-mvc - 为@Autowired jdbcTemplate 和 h2 内存数据库执行多次运行脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14070997/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com