Java
-
Gradle Goodness: Running a Single Test
We can run test code with Gradle using the test task that is added by the Java plugin. By default…
Read More » -
Java Reflection oddities with inner class constructor parameters
About Java inner classes Java allows member classes (classes that are defined inside other classes), local classes (classes that are…
Read More » -
Spring Security Login
1. Introduction This article is going to focus on Login with Spring Security. We’re going to built on top of…
Read More » -
Hibernate 4 with Spring
1. Overview This article will focus on setting up Hibernate 4 with Spring – we’ll look at how to configure…
Read More » -
Spring MVC Tutorial
1. Overview and Maven This is a simple Spring MVC tutorial showing how to set up a Spring MVC project,…
Read More » -
Spring Security with Maven
1. Overview This article will explain how to setup Spring Security with Maven and will go over specific use-cases of…
Read More » -
Hibernate 3 with Spring
1. Overview This article will focus on setting up Hibernate 3 with Spring – we’ll look at how to use…
Read More » -
JPA – Querydsl Projections
In my last post: JPA – Basic Projections – I’ve mentioned about two basic possibilities of building JPA Projections. This…
Read More » -
Java 8: CompletableFuture in action
After thoroughly exploring CompletableFuture API in Java 8 we are prepared to write a simplistic web crawler. We solved similar…
Read More »