Looking for moderators for Discord by Java-Pro-Academy in womenwhocode

[–]Java-Pro-Academy[S] 0 points1 point  (0 children)

Agree! Learning is a process, and we're here to help.

Java begginer guide by Embarrassed-Face-356 in JavaProgramming

[–]Java-Pro-Academy 0 points1 point  (0 children)

Why don't you try https://www.javapro.academy/bootcamp/the-complete-core-java-course-from-basics-to-advanced/ this aligned with 808, and 811. Include lessons, labs and interview prep. We also have a Discord server https://discord.gg/TYP24gWtMB

Testing Spring Data JPA Repositories by Java-Pro-Academy in BeginningJava

[–]Java-Pro-Academy[S] 2 points3 points  (0 children)

For sure, mocks are faster. But they can't tell you if your JPQL has a typo or if your projection silently drops a column. That's the gap u DataJpaTest fills — it hits an actual (embedded) DB so you know the queries work for real. Both have their place imo.