Talk:Using the Application context in SpringFrom WikiJavaComments on Using the Application context in Spring <comments /> Alcor Wow, that's an open question Hi, Wow that's an open question, the application context can define everything within the Spring framework. From AOP to Web MVC to loads of other things. I recommend you a good reading on the Spring framework to get an answer to your question. --DonGiulio 16:52, 3 January 2009 (UTC) Santhosh How can i instantiate Application Context?
instantiate Application Context Application Context is an interface, therefore it cannot be instantiated. What you can do is to instantiate one of the (non-abstract) classes that implement the application Context interface. In this example I used: context = new FileSystemXmlApplicationContext(APPLICATION_CONTEXT_FILE); but you can instantiate any other of the implementations. You can see a list of the default ones on the man page: here. Hope this answers your question :)
Sunil Hi I gone through this article.and i found that this is very useful for the begineer Thanks --Sunil 02:14, 19 July 2011 (PDT) |

I'm plannin' to learn Spring and your article is great. Very well written.
Would you please explain me better the uses of the application context file?
--Alcor 16:30, 2 January 2009 (UTC)