I am using h2 database and there are couple beans I would like to use @PostConstruct to select database records and initialize couple things. I have java configuration on }
Is there any way that I can configure SpringLiquibase bean to run before other beans so I can use @PostConstruct and hit a database table? Currently when I use @PostConstruct, I’m getting a table not found exception. (Because the springliquibase hasn’t kicked off yet and didn’t create the tables in memory.)