Open davewingate opened 9 months ago
Upon updating to Spring Boot 3, I noticed that I'm no longer able to autowire in an instance of HibernateQueryInterceptor
HibernateQueryInterceptor
@Autowired private HibernateQueryInterceptor hibernateQueryInterceptor;
Would you be open to a PR that adds a src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports file indicating that com.yannbriancon.config.HibernatePropertiesConfig should be auto-imported?
src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
com.yannbriancon.config.HibernatePropertiesConfig
@davewingate can we solve that problem by configuration without PR in our projects?
Upon updating to Spring Boot 3, I noticed that I'm no longer able to autowire in an instance of
HibernateQueryInterceptor
Would you be open to a PR that adds a
src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
file indicating thatcom.yannbriancon.config.HibernatePropertiesConfig
should be auto-imported?