我有一个用gradle构建的spring-boot应用程序。
使用了liquibase:
implementation 'org.liquibase:liquibase-core:3.6.3'
根据文档使用changeLog。 没有其他配置。
现在我需要向我的应用添加健康检查。 似乎弹簧执行器可以帮助我。
我添加了compile 'org.springframework.boot:spring-boot-actuator-autoconfigure:2.1.3.RELEASE'
现在应用程序无法启动,因为启动时某些Bean试图将一些信息放入不存在的表中。 例外是:
org.springframework.beans.factory.BeanCreationException:
Error creating bean with name 'myBean': Invocation of init method failed;
nested exception is org.springframework.jdbc.BadSqlGrammarException: StatementCallback;
......
Caused by: org.postgresql.util.PSQLException: ERROR: relation "my_table" does not exist
有人遇到同样的问题吗? 任何信息都会有所帮助。谢谢!