• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Difference between Spring 2 and Spring 3

 
Ranch Hand
Posts: 1376
Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi

Please tell me the

a. difference between Core Spring 2.5 and Core Spring 3.

a. difference between Spring MVC 2.5 and Core Spring MVC 3.

Thanks
 
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
.5 to both questions.

There are docs on www.springframework.org for Spring 3.0 called What's new. That will tell you everything.

Keys to Spring 2.5 to 3.0

3.0 requires Java 5. 2.5 can use Java 1.4
Spring Expresssion Language
More Annotations, covers everything that you could do in xml
Spring Converters
Adding Java Config module to Core Spring
Spring RESTful Web Services are new
More namespaces

for MVC, more Annotations, Spring RESTful WebServices, which includes HttpMessageConverters, ContentNegotiatingViewResolver and MVC Namespace

But everything that you could do in 2.5 you can also do in 3.0.

For everything else, you will need to check the documentation on Spring's website.

Mark
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic