提问人:Stephan 提问时间:9/30/2020 最后编辑:Jens SchauderStephan 更新时间:7/19/2022 访问量:979
如何将数据库脚本分配给 spring.quartz.jdbc.schema
how to assign db script to spring.quartz.jdbc.schema
问:
我正在使用带有弹簧靴的石英。我想在启动期间使用自己的数据库脚本生成石英表。我已经生成了tables_postgresql.sql文件并放入 src/main/resources。
在application.properties中,我为
spring.quartz.jdbc.schema = \tables_postgresql.sql赋值。
但是在启动过程中没有被拾取。 你能帮我如何在statrt up期间使用这个sql文件吗?
问候,斯蒂芬
答:
0赞
Javy Villalba
7/19/2022
#1
有点晚了,希望能对其他人有所帮助......
我创建了文件(包含 create tables/idx 语句):
src/main/resources/quartz.sql
我配置了这样的:application.properties
spring.quartz.jdbc.schema=classpath:quartz.sql
由于文件位于“resources”文件夹中,因此不应包含“/”(斜杠)或空格。
评论