Spring批处理的数据库和Meta DB表

时间:2017-06-30 11:50:04

标签: java spring spring-boot spring-batch hsqldb

我是Spring Batch的新手。尝试从spring doc开始example。使用spring-boot-starter-parent(1.5.2.RELEASE)。试图了解在哪里可以看到使用这个" Person" hsql中的表。以及在执行后我在哪里可以看到此示例的元数据表。请帮我理解这一点。

1 个答案:

答案 0 :(得分:0)

默认情况下,Spring Boot会根据您的依赖项使用嵌入式数据库(H2,HSQL,Derby)。

H2提供了一个很棒的Web控制台来查看数据库的状态。您可以在此处找到更多信息:https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-sql.html#boot-features-sql-h2-console

如果您想继续使用HSQL,请查看以下答案:https://stackoverflow.com/a/8880390/8232755