Spring Test DBUnit and table schema name
问题 Is it possible to set the table schema name when using @DatabaseSetup annotation from Spring Test DBUnit? Currently I'm using it like this: @DatabaseSetup("user-data.xml") public class UserMapperTest { } user-data.xml: (I also tried to set the element name to user.system_user without any luck) <dataset> <system_user ... /> </dataset> And here I'm creating my table with schema called user: create table "user".system_user (...); And this is the exception that I get when running test: org.h2