tags:

views:

46

answers:

1

I wanted to learn how to use annotation in Spring MVC using annotation. But apparently the Spring MC Step By Step that is bundled with Spring 2.5 download release uses concrete Controller hierarchy.

Hopefully somebody could give me a good link where I could learn annotation driven spring mc application.

+2  A: 

Check Spring 3 sample application repository.

For MVC see mvc-basic sample, for basic CRUD with MVC check petclinic.

Edit: documentation on petclinic sample

Aleksey Otrubennikov
Hi Aleksey,Thanks... I am currently checking this out and making it work..
Mark Estrada