How to run SpringLiquibase before @PostConstruct

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.) 


Liquibase doesn’t define a instantiation order in SpringLiquibase, but I believe you can control dependency order in your spring configuration. I don’t remember how off hand, though. 


Nathan