Hibernate-SpringBoot icon indicating copy to clipboard operation
Hibernate-SpringBoot copied to clipboard

Collection of 300+ best practices for Java persistence performance in Spring Boot applications

Results 4 Hibernate-SpringBoot issues
Sort by recently updated
recently updated
newest added

I'm seeing some weird issue while working with findAll() method with the specification and pageable arguments. If I set the lower page i.e. 0 size i.e. 10 then I don't...

Upgraded to Boot 2.2.1, this fixed the `javax.net.ssl.SSLException` thrown when application was stopped because the mysql driver had a bug. Also added graceful stopping of the application. And a CommandLineRunner...

Bumps [c3p0](https://github.com/swaldman/c3p0) from 0.9.5.2 to 0.9.5.4. Commits c61c00b Fix one missing word in docs... 3aa4e5f Fix dangling <tt> in docs. a93dc64 Provide more accurate warning messages on XML parse failures....

dependencies

Hi, Thanks for awesome book. HibernateSpringBootOneToManyBidirectional has helper method removeBooks. ``` @Transactional public void deleteAllBooksOfAuthor() { Author author = authorRepository.findByName("Joana Nimar"); author.removeBooks(); // use removeBooks() helper } ``` But if...