@SqlConfig

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

  • Java

  • Kotlin

@Test
@Sql(
	scripts = "/test-user-data.sql",
	config = @SqlConfig(commentPrefix = "`", separator = "@@") (1)
)
void userTest() {
	// run code that relies on the test data
}
1 设置 SQL 脚本中的注释前缀和分隔符。
@Test
@Sql("/test-user-data.sql", config = SqlConfig(commentPrefix = "`", separator = "@@")) (1)
fun userTest() {
	// run code that relies on the test data
}
1 设置 SQL 脚本中的注释前缀和分隔符。