Java Tips Part 5
Tip 21: Use Prepared Statements When working with JPA/Hibernate make use of Prepared Statements that can be reused. Basically, I’m saying do not do the following: This is considered a…
Team to Create Outside the Box
Tip 21: Use Prepared Statements When working with JPA/Hibernate make use of Prepared Statements that can be reused. Basically, I’m saying do not do the following: This is considered a…
Continuing my Java Tips from experience that I have learned from code reviews to different programming tasks. Tip 16: Perform Bulk operations with Native Queries, or Stored Procedure It can…
Continuing my Java Tips from experience that I have learned from code reviews to different programming tasks. Tip 11: Use Hibernate Statistics Now, this is only for your development profiles/environments,…
Continuing my Java Tips from experience that I have learned from code reviews to different programming tasks. Tip 6: Don’t call .toString() on slf4j logging calls. So if you’re following…
Over the years I have done a number of code reviews there have been a number of common mistakes that I have found. So here are my Java tips a…