I”m not sure about the difference. I”m using Hibernate and, in some books, they use JavaBean and POJO as an interchangeable term. I want to know if there is a difference, not just in the Hibernate context, but as general concepts.
Đang xem: Pojo là gì
A JavaBean follows certain conventions. Getter/setter naming, having a public default constructor, being serialisable etc. See JavaBeans Conventions for more details.
A POJO (plain-old-Java-object) isn”t rigorously defined. It”s a Java object that doesn”t have a requirement to implement a particular interface or derive from a particular base class, or make use of particular annotations in order to be compatible with a given framework, and can be any arbitrary (often relatively simple) Java object.
Share Improve this answer Follow edited Apr 30 “16 at 23:16 answered Sep 8 “09 at 14:18
A JavaBean is a Java object that satisfies certain programming conventions:
the JavaBean class must implement either Serializable or Externalizable;the JavaBean class must have a public no-arg constructor;all JavaBean properties must have public setter and getter methods (as appropriate);all JavaBean instance variables should be private. Share Improve this answer Follow edited Sep 8 “17 at 6:39
Manu Manjunath 5,36211 gold badge2929 silver badges3030 bronze badges answered Jul 22 “14 at 11:52
The term was coined while Rebecca Parsons, Josh MacKenzie and I were preparing for a talk at a conference in September 2000. In the talk we were pointing out the many benefits of encoding business logic into regular java objects rather than using Entity Beans. We wondered why people were so against using regular objects in their systems and concluded that it was because simple objects lacked a fancy name. So we gave them one, and it”s caught on very nicely.
http://www.martinfowler.com/bliki/POJO.html
pojo class is an ordinary class without any specialties,class totally loosely coupled from technology/framework.the class does not implements from technology/framework and does not extends from technology/framework api that class is called pojo class.
pojo class can implements interfaces and extend classes but the super class or interface should not be an technology/framework.
Examples :
1.
class ABC{—-}ABC class not implementing or extending from technology/framework that”s why this is pojo class.
2.
class ABC extends HttpServlet{—}ABC class extending from servlet technology api that”s why this is not a pojo class.
3.
class ABC implements java.rmi.Remote{—-}ABC class implements from rmi api that”s why this is not a pojo class.
4.
class ABC implements java.io.Serializable{—}this interface is part of java language not a part of technology/framework.so this is pojo class.
5.
class ABC extends Thread{–}here thread is also class of java language so this is also a pojo class.
6.
class ABC extends Test{–}if Test class extends or implements from technologies/framework then ABC is also not a pojo class because it inherits the properties of Test chúng tôi Test class is not a pojo class then ABC class also not a pojo class.
7.
now this point is an exceptional case
Entityclass ABC{–}Entity is an annotation given by hibernate api or jpa api but still we can call this class as pojo class.class with annotations given from technology/framework is called pojo class by this exceptional case.