@SqlConfig

@SqlConfig 定义用于确定如何解析并运行使用 @Sql 注解配置的 SQL 脚本的元数据。以下示例展示了如何使用它:

@SqlConfig defines metadata that is used to determine how to parse and run SQL scripts configured with the @Sql annotation. The following example shows how to use it:

Java
@Test
@Sql(
	scripts = "/test-user-data.sql",
	config = @SqlConfig(commentPrefix = "`", separator = "@@") (1)
)
void userTest() {
	// run code that relies on the test data
}
1 Set the comment prefix and the separator in SQL scripts.
Kotlin
@Test
@Sql("/test-user-data.sql", config = SqlConfig(commentPrefix = "`", separator = "@@")) (1)
fun userTest() {
	// run code that relies on the test data
}
2 Set the comment prefix and the separator in SQL scripts.