On February 19-21 I'll attend my first #devnexus. I'm very excited about one of the best conferences around the year. I'll be with my fellow friends from @nyjavasig at the JUG Leaders Summit. Meeting so many smart, dedicated people that contributed so much for the #java ecosystem makes me very happy. I can't say how … Continue reading Devnexus
Category: Blog Feed
Weekend Reading List – 5th ed
Welcome back. Today we're posting the last suggestions for January. Enjoy our #weekendReadingList and share with us your articles and what you have at your reading queue. Would you like to suggest an article or have your article featured here? Reach out to me on Twitter or here in the blog. Spring Boot Spring Boot … Continue reading Weekend Reading List – 5th ed
Weekend Reading List – 4th ed
THURSDAY!!!!! #WeekendReadingList day. Would you like to suggest an article or have your article featured here? Reach out to me on Twitter or here in the blog. I hope you enjoy this week's recommendations. Performance Would you like to know more about JVM Performance, tool, and metrics? You'll find this series of Tweets from Chris … Continue reading Weekend Reading List – 4th ed
Weekend Reading List – 3rd ed
It's Thursday It's #WeekendReadingList day. Today's suggestions are: Building Reactive Pipelines: How to Go from Scalable Apps to (Ridiculously) Scalable Systems - Mark Heckler Inside the Language: Sealed Types - Ben Evans Mastering Maven: Getting Started - Andres Almiray What's new with Jakarta NoSQL? - Otavio Santana Applying CI/CD to Java Apps Using Spring Boot - Fanon Jupkwo … Continue reading Weekend Reading List – 3rd ed
Weekend Reading List – 2nd ed
Today is Thursday and every Thursday is #WeekendReadingList day. Today's suggestions are: Build a CRUD App with Angular 9 and Spring Boot 2.2 - Matt Raible How to create a microservice with Eclipse MicroProfile and Apache TomEE - Cesar Hernandez The 2020 Java Developer RoadMap - javinpaul One VM to Rule Them All - Thomas Wuerthinger The Ultimate Guide … Continue reading Weekend Reading List – 2nd ed
Weekend Reading List – 1st ed
One of my goals to 2020 is to suggest every Thursday, a list of articles that we can read over the weekend. Our community produces a lot of content, and sometimes it's hard to select what to consume. I hope this list can help us on our learning journey. Today's suggestions are: Learn to Kata … Continue reading Weekend Reading List – 1st ed
Records – JEP 359
It's frequently that when writing our code, we end up writing "data" classes(POJO). Classes with several properties, getters and setters, equals, hash code, toString and nothing else. Of course, all the code can be generated by the IDE and more recently Lombok but they are still required and are one of the reasons for Java be … Continue reading Records – JEP 359
Interview with a Java Champion – Edson Yanaga
Hello, Java community. I'm starting a new blog series named Interview with a Java Developer. In the first episode, I had the honor to talk to Edson Yanaga (@yanaga). He's the Director of Developer Experience at RedHat, Java Champion, Microsoft MVP among others. Check the video below where we talk about technology, career and of course Quarkus. Hope you … Continue reading Interview with a Java Champion – Edson Yanaga
Helpful NullPointerExceptions
JDK 14 will have a new feature, JEP 358 - Helpful NullPointerExceptions. This feature aims to bring a better understanding to the developer about the cause of a Null Pointer Exception. Let's take a look at the code below: String name = student.getName(); The JVM would produce a message like: Exception in thread "main" java.lang.NullPointerException … Continue reading Helpful NullPointerExceptions
Java 13 – Text Blocks
Java 13 adds a preview feature that supports JEP 355 - Text Blocks (previously JEP 326 - Raw String Literals). The goal is simple: make it easier to write String that span over several lines. This is especially useful when we are representing a SQL statement or a JSON. Today, if we want to write a SQL … Continue reading Java 13 – Text Blocks
