• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Important Topics in Spring

 
Ranch Hand
Posts: 392
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What are the important topics (to study) in Spring?
 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I suggest starting with the some of the FAQ's and literature where they try to convince you to use it. Once you understand their philosophy, learning the concepts will be easy because you will already have a guess at how they implement a feature.

After this point you must learn about Beans, ApplicationContext and configuration. Most other topics will require a basic knowledge of loading and configuring beans. Head to the (excellent) documentation, browse that for some interesting sections. If there is an api in particular you want to learn within Spring, tackle that after you "get" bean configuration.

Beyond that, use some reflection, why do you want to learn Spring? What will you use it for? Find something cool and try it out.
 
Ranch Hand
Posts: 73
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Spring works with Inversion of Control IoC and Aspect Oriented Programming (AOP). It also has a web tier, Spring MVC, along with may other aspects of the framework. This is the latest doc from spring, but I would start here and move off to books that show implementations of these ideas. http://static.springframework.org/spring/docs/2.5.x/reference/index.html
I think springs docs are pretty good without the other books.
 
clojure forum advocate
Posts: 3479
Mac Objective C Clojure
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I suggest you read Spring documentation from the first line to the last line.
Topics that might interest you:
1. Spring IoC container.
2. Spring AOP
3. Spring ORM facilities
 
reply
    Bookmark Topic Watch Topic
  • New Topic