TCS Interview Question 3+ What are POJO classes in spring? What is the use of POJO Class, and How to create POJO classes. POJO - POJO stands for "plain old java object" .It is an Ordinary JAVA Object, not bound by any special restriction other than those forced by the JAVA Language Specification and not requiring any class path. POJO's are used for increasing the readability and re-usability of a program. => The term POJO was introduced by Martin Flower (An American Software developer) in 2000. It is available in JAVA from the EJB 3.0 by sun microsystem. Generally, a POJO Class contains Variables and their Setters & Getters. => The POJO Classes Similar to beans as both are used to define the Objects to increase the readability and reusability . => The only difference between them ,that Bean Files have some restrictions but, the POJO files do not have any Special restrictions. What is the use of POJO Classes:- => The POJO Class in JAVA is used to ...