2009 December | DeepakGaikwad.net
Home » Archive

Articles Archive for December 2009

Spring »

[30 Dec 2009 | 3 Comments | ]

URI-template is a string containing one or more variables or place holders which can be replaced to generate URL out of this. Though this feature appears simple, but uses of this can be significant. Suppose we want to have valid a user id or a session id with each in coming request. Instead of retrieving this attribute from request or session object, we receive as a url variable. Let us see how this works.

Spring »

[29 Dec 2009 | 17 Comments | ]

In this post, I am going to give you a start up code base for a Spring MVC 3 based application. If you want to go back and refer to the previous version of Spring MVC then this article will help you. I am assuming that the reader is already aware of Java 5 and Spring basic concepts like annotations, dependency injection etc. Spring 3.0 has extensively used the popular annotation feature of Java 5. As we move ahead in this article, I’ll mention more new things wherever applicable.

Java »

[23 Dec 2009 | No Comment | ]

Till date we all know that Java compilation is not a runtime business. Write code, compile and generate byte code, deploy and run it on any jvm. But this restriction is removed from java 6. Now compilation is no more a pre-runtime business. Using APIs provided by java 6, we can generate classes runtime and compile to generate class files, which can be used further.Let us see the important classes we need in writing a programmatic compiler.

Headline »

[22 Dec 2009 | No Comment | ]
Facebook Changes Default Privacy Settings

OK! Not sure how much you are concern about it, and how much data you have uploaded there. I am talking about your data on facebook. I hope you have already gone seriously through the default privacy settings and selected only those options if data which you really want to expose to world. I know you call it privacy, security and blah! blah!! I am also sure that very very few of us go and recheck those default privacy settings once we open the account. This is not only applicable …

Question Bank »

[17 Dec 2009 | 6 Comments | ]

What is Spring?

Spring is an open source enterprise application development framework, which is primarily based on IOC (inversion of control) or DI (dependency injection) design pattern. It provides ready container to create and manage objects and also provides enterprise services to those objects. It provides ready components for different tiers of application e.g. web, middle/business and data access.