ModelMap vs Sessions

I found a peculiar problem today. Normally when I make controller methods, I use a ModelMap object for carrying data from the method to the jsp. Using these in spring mvc allows me to access the data using the ${ } construct and jstl tags when needed. This…

Basic Hibernate : My first attempt

 Today I started on hibernate and this is about the basic stuff. More like a hello world. I just finished re-writting my LoginDao to use hibernate framework. This webpage has helped me to do this : www.vaannila.com/spring/spring-hibernate-integration-1.html Heres what I have done. This time instead of spending time…

Spring: Yet another surprise!

My demo code started working again and this time I see a pattern. This code was deployed into my weblogic server at the context root of “/”. When I changed it to something else like “aklogin”, I started getting the 404 errors again and all that I have…

Spring MVC Annotations Wierdness

I have been learning about Spring MVC for a past few days and have been trying to implement a "hello world" page using Spring’s annotation based controllers.  I have followed a step-by-step tutorial I found in the net. The funny thing is that the tutorial or any other…