Tomáš Vaněk
Tomáš Vaněk
### Setting a system property. What exactly is this supposed to do? If it's meant to change a configuration property in `DepartmentService`, which is a singleton bean, I doubt this...
**Setting a system property** The difference between versions with H2 and Embedded Postgres databases lies in the `EmbeddedDatabaseTestExecutionListener`, which evaluates and process the `@AutoConfigureEmbeddedDatabase` annotation. This listener causes the Spring...
The fix for issue where `EmbeddedDatabaseTestExecutionListener` was affecting tests without the `AutoConfigureEmbeddedDatabase` annotation is ready for release.
Hi Pavel, long time no see, I hope you're doing well. Regarding the first part of your question, users and roles in a PostgreSQL database are shared objects. So in...
> the testPreparers have got around 5k records Do you mean that `testPreparers` contains a list of 5k preparers, or that there's only one preparer but with 5k records? I...
Although I expected you to send the entire log, it doesn't matter in the end. Because if there's only one `ReplayableDatabasePreparerImpl` and it's stored in `corePreparers`, then everything works as...
I think that in your case, it might be possible to use the following solution: ```java @Component @DependsOn("commonFlywaySqlMigrationExecutor") class TenantFlywaySqlMigrationExecutor( private val tenantSqlFluentConfiguration: FluentConfiguration, private val tenantRepository: TenantRepository, private val...
Implementing some form of ordering for processors certainly makes sense to me. I would prefer `Ordered` over `PriorityOrdered`, as the latter is typically used for highly technical internal processors. I'll...
Hi @vladimirfx, thanks for your question. Could you please describe your use case in more detail? From what you're writing, it seems you have two applications - one where you...
Thanks for the description of the situation. >Do I understand correctly that in the Spring Boot environment, I can define a bean of type Consumer to fine-tune the database? Yes,...