Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

can someone please explain to me the followings:

  1. what is is ApplicationContext ?
  2. what is the difference between ApplicationContext and HttpSession?

found this implementation but can't understand the concept. http://mythinkpond.wordpress.com/2010/03/22/spring-application-context/

share|improve this question
A similar post can be found [here][1] [1]: stackoverflow.com/questions/6145091/… – Fahim Jan 2 at 6:14

1 Answer

up vote 1 down vote accepted

Java EE has the concept of an ServletContext, which is an interface for communicating with the container that is running a Java EE application.

The Spring framework has an ApplicationContext class which is a way of communicating with the Spring container. In other words, it's a high level way of communicating with the Spring framework.

An HttpSession is state maintained by an application server for a series of requests made by a client. The HTTP protocol itself is stateless, so this is a way to keep some data about the user's interactions around.

share|improve this answer
can you please detail some more about the concept of the application Context? i don't get why the application context good for? how it makes things state-full and not stateless? thanks :) – 0x90 Jan 19 '12 at 12:28
I think you need to go and read about the Spring framework. – hvgotcodes Jan 19 '12 at 13:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.