sql.init.schema-locations我想匹配所有的以_schemal.sql结尾的文件怎么写
时间: 2024-05-03 07:18:31 浏览: 150
yeb_yeb.sql_数据库文件_云E办sql_云E办
你可以使用通配符 "*" 来匹配所有以 "_schema.sql" 结尾的文件。具体地,在 sql.init.schema-locations 属性中,你可以这样写:
```
sql.init.schema-locations=classpath*:/path/to/sql/files/*_schema.sql
```
其中,classpath* 表示在类路径下搜索,/path/to/sql/files/ 是指 SQL 文件所在的目录,"*_schema.sql" 则表示匹配所有以 "_schema.sql" 结尾的文件名。
阅读全文