-
Enterprise Java
Spring MVC: form handling vol. 1
Spring MVC is a part of Spring Framework and its main purpose is to make web-development more simple, convenient and…
Read More » -
Software Development
Polymorphism and Inheritance are Independent of Each Other
Flexible programs focus on polymorphism and not inheritance. Some languages focus on static type checking (C++, Java, C#) which links…
Read More » -
Enterprise Java
Simple Spring MVC Web Application using Gradle
This post will be similar to our previous post, Simple Gradle Web Application, except we will now use Spring MVC,…
Read More » -
Agile
To estimate or not to estimate, that is the question
Disparaging those who provide software estimates seems to be a growing sport. At conferences, in blogs and the twitter-verse it…
Read More » -
Core Java
How to create a memory leak
This is going to be a rather evil post – something you will be googling when you really wish to…
Read More » -
Enterprise Java
Spring JMS, message automatic conversion, JMS template
In one of my projects I was supposed to create a message router that like all routers was supposed to…
Read More » -
Enterprise Java
When Maven Dependency Plugin Lies
Problem: We had an integration test which creates a spring ClassPathXmlApplicationContext and while doing so the test blew up with…
Read More » -
DevOps
Concepts of SNMP (including v3)
SNMP Purpose. SNMP is a protocol for getting the status (e.g., CPU load, free memory, network load) of computing devices…
Read More » -
Core Java
Why a synchronized StringBuffer was never a good idea
Introduction StringBuffer is a synchronized class for mutable strings. The main problem with making it synchronized is that It was…
Read More »