We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is an open issue on Boot for this spring-projects/spring-boot#13042 (comment) And the work around is to add the following configuration:
@Configuration protected static class DataSourceInitializerInvokerConfiguration implements LoadTimeWeaverAware { @Autowired private ListableBeanFactory beanFactory; @PostConstruct public void init() { String cls = "org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker"; if (beanFactory.containsBean(cls)) { beanFactory.getBean(cls); } } @Override public void setLoadTimeWeaver(LoadTimeWeaver ltw) { } }
The text was updated successfully, but these errors were encountered:
Unable to reproduce.
Sorry, something went wrong.
No branches or pull requests
There is an open issue on Boot for this spring-projects/spring-boot#13042 (comment)
And the work around is to add the following configuration:
The text was updated successfully, but these errors were encountered: