Tim Sparg
Tim Sparg
Adding `spring-boot-starter-data-jpa` dependency stops `@ApplicationModuleListener` receiving events
the following snippet works until I add the `spring-boot-starter-data-jpa` dependency. ```java @EnableScheduling @SpringBootApplication public class DemoApplication { private ApplicationEventPublisher publisher; public DemoApplication(ApplicationEventPublisher publisher) { this.publisher = publisher; } public static...
For most use cases `ListCrudRepository` and `ListPagingAndSortingRepository` are preferable. It would be nice to have a rule that could enable that. I would also be happy to contribute to that,...