Java
The New Era of Autonomous Debugging: Transforming the SDLC
The software world is changing rapidly due to advancements in GenAI. These technologies are disrupting traditional processes and…
Debugging jsoup Java Code in Production Using Lightrun
Scraping websites built for modern browsers is far more challenging than it was a decade ago. jsoup is…
Debugging JAXB Production Issues
Java Architecture for XML Binding (AKA JAXB API) is a popular API for marshaling XML data. It's a…
Debugging Gson, Moshi and Jackson JSON Frameworks in Production
Parsing bugs are the gift that keeps giving in the age of APIs. We use a service; it…
The Complete List of Spring Boot Annotations You Must Know
Spring applications need a fair amount of configuration. Things like Maven dependencies, MVC configuration, and security all require a lot of code to get up and running. Spring reduces or eliminates these needs entirely, instead allowing you to override any of the defaults it selects for you.
How to Export a JAR from IntelliJ
In this post, we’ll offer IntelliJ users an overview of what JARs are and why they’re useful followed by a step-by-step tutorial showing how to export a JAR from the IntelliJ IDE.
How to Debug Remotely in IntelliJ IDEA
Remote debugging with IntelliJ can help developers identify bugs and reproduce errors across every stage of the software deployment lifecycle.
How to Debug Race Conditions Between Threads in Java
In this tutorial, we give an overview of what race conditions are, what multithreaded Java code is used for, and how to debug race conditions in Java using a few different methods.
Debugging Java Collections Framework Issues in Production
The Java Collections Framework was a huge leap forward when it was introduced as part of Java 2…
Kotlin vs Java: 10 Years In
Kotlin learned from the mistakes of Java and came out from JetBrains as the better alternative statically typed, general-purpose programming language with a type interface
Java Tutorial: Java Command Line Arguments
Command line interfaces are a great option if your program is primarily used by developers or if it…