I have couple of entities in my data layer stored in particular schema. For example:
@Entity
@Table(name = "FOO", schema = "DUMMY")
public class Foo {}
I'm trying to setup H2 embedded database for integration testing of my data layer.
I'm using @DataJpaTest
annotation for my tests to get H2 embedded database configured automatically. However, the creation of tables fails because schema DUMMY
is not created at DB initialization.
Any ideas on how to create schema before creation of tables in test cases?
I've tried to use @Sql(statements="CREATE SCHEMA IF NOT EXISTS DUMMY") but didn't succeed.
Also, I've tried to set spring.datasource.url = jdbc:h2:mem:test;INIT=CREATE SCHEMA IF NOT EXISTS DUMMY
in my test.properties
file together with TestPropertySource("classpath:test.properties")
, but that didn't work too.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…