Java @SuppressWarnings Annotation 1. Overview In this quick tutorial, we’ll have a look at how to use the @SuppressWarnings annotation. 2. @SuppressWarnings Annotation Compiler warning messages are usually helpful. Sometimes warnings can get noisy, though. Especially when we can’t or don’t want to address them: public class Machine { private List… Continue Reading java-suppresswarnings

Apache Maven Tutorial 1. Introduction Building a software project typically consists of such tasks as downloading dependencies, putting additional jars on a classpath, compiling source code into binary code, running tests, packaging compiled code into deployable artifacts such as JAR, WAR, and ZIP files, and deploying these artifacts to an… Continue Reading maven

Guide to the Kotlin Exposed Framework 1. Introduction In this tutorial, we’re going to look at how to query a relational database using Exposed. Exposed is an open source library (Apache license) developed by JetBrains, which provides an idiomatic Kotlin API for some relational database implementations while smoothing out the… Continue Reading kotlin-exposed-persistence