In this tutorial we will check, why is double brace initialization is considered an anti pattern.
How to make array backed list editable
Suppose we have a list that is backed by an array. In another words – that we have a wrapper around the array. Our question is: how to add or remove elements from that list?
Array backed list
In this tutorial we will examine what is array backed list and how it behave.
How to display real Hibernate SQL query using slf4j
In this tutorial you will find out how to show real SQL statements (with real parameter values instead of question marks), that are send to database.
This will greatly help us to better debug our code.
Spring 3 MVC Hibernate Hsqldb Embedded database
In this tutorial we will create simple Spring 3 MVC application with Hsqldb as embedded database.
We will start with project created in previuos tutorial, where we were using H2 database.
Spring 3 MVC Hibernate H2 Embedded database Tutorial
In this tutorial we will create simple Spring 3 MVC application with H2 as embedded database. This configuration is useful for fast prototyping, especially during the development phase.
Technologies used:
Spring 3, Java 6, Maven 3, Hibernate 4, H2
Simple Spring MVC with java config – without web.xml
In previous post, we created Spring MVC application with Spring configuration located in Java classes. There was only one xml – web.xml. We will descrivbe here what do we have to do to get rid off it, and to move configuration from this xml to Java class
Simple Spring MVC with java config
In this tutorial we will create simple web application with java-based (annotations) configuration, without any spring xml files.
Technologies used:
Spring 3, Maven 3, Java 6
Spring 3 MVC Tutorial
In this tutorial we will create simple Spring 3 MVC application from scratch.
Technologies used:
Spring 3, Maven 3, Java 6