Yanming Zhou
Yanming Zhou
> @quaff Please take a look at this PR OK, I'll take a look, but I'm a contributor like you, You need official review from project member.
> https://hibernate.atlassian.net/browse/OGM-1587 You should create an issue for ORM not OGM.
Please review. @sebersole
@gavinking I'm sorry to disturb you, I assume you are expert of `ActionQueque`, could you evaluate the value of this feature and review the PR?
That's https://github.com/spring-projects/spring-boot/pull/35125 trying to fix.
@wilkinsona What about skip replacing DataSource if bean `org.springframework.boot.testcontainers.service.connection.ServiceConnectionAutoConfiguration` is present? ```java if (registry.containsBeanDefinition("org.springframework.boot.testcontainers.service.connection.ServiceConnectionAutoConfiguration") ) { logger.info( "Skip replacing DataSource bean with embedded version due to @ServiceConnection is using"); return;...
https://docs.spring.io/spring-boot/docs/current/reference/html/data.html#data.sql.jpa-and-spring-data.creating-and-dropping >> There is also a `spring.jpa.generate-ddl` flag, but it is not used if Hibernate auto-configuration is active, because the `ddl-auto` settings are more fine-grained.
> https://docs.spring.io/spring-boot/docs/current/reference/html/data.html#data.sql.jpa-and-spring-data.creating-and-dropping > > > > There is also a `spring.jpa.generate-ddl` flag, but it is not used if Hibernate auto-configuration is active, because the `ddl-auto` settings are more fine-grained. I...
> > https://docs.spring.io/spring-boot/docs/current/reference/html/data.html#data.sql.jpa-and-spring-data.creating-and-dropping > > > > There is also a `spring.jpa.generate-ddl` flag, but it is not used if Hibernate auto-configuration is active, because the `ddl-auto` settings are more fine-grained....
> In Spring Boot 2, having the`spring.jpa.generate-ddl` property set to `true` did not perform any updates as long as the corresponding hibernate properties (`hibernate.hbm2ddl.auto`) were not explicitly set. @nateha1984 I...