Java – One Year Later

It’s been a little over a year since I started developing in Java full-time again. A retrospective is overdue! Workplace takeaways Communication. This may not seem like a Java-related skill, but I cannot overstate how many times stopping to ask questions,… Read more

Similar

Java Feature Spotlight: Pattern Matching

Java SE 14 (March 2020) introduced a limited form of pattern matching as a preview feature, which becomes a permanent feature in Java SE 16 (March 2021). The first phase of pattern matching is limited to one kind of pattern (type patterns) and one languag... (more…)

Read more »

High-Performance Java Persistence Tips (SQL)

Introduction A high-performance data access layer requires a lot of knowledge about database internals, JDBC, JPA, Hibernate, and this post summarizes some of the most important techniques you can use to optimize your enterprise application. 1. SQL statem... (more…)

Read more »