For working professionals
For fresh graduates
More
6. JDK in Java
7. C++ Vs Java
16. Java If-else
18. Loops in Java
20. For Loop in Java
45. Packages in Java
52. Java Collection
55. Generics In Java
56. Java Interfaces
59. Streams in Java
62. Thread in Java
66. Deadlock in Java
73. Applet in Java
74. Java Swing
75. Java Frameworks
77. JUnit Testing
80. Jar file in Java
81. Java Clean Code
85. Java 8 features
86. String in Java
92. HashMap in Java
97. Enum in Java
100. Hashcode in Java
104. Linked List in Java
108. Array Length in Java
110. Split in java
111. Map In Java
114. HashSet in Java
117. DateFormat in Java
120. Java List Size
121. Java APIs
127. Identifiers in Java
129. Set in Java
131. Try Catch in Java
132. Bubble Sort in Java
134. Queue in Java
141. Jagged Array in Java
143. Java String Format
144. Replace in Java
145. charAt() in Java
146. CompareTo in Java
150. parseInt in Java
152. Abstraction in Java
153. String Input in Java
155. instanceof in Java
156. Math Floor in Java
157. Selection Sort Java
158. int to char in Java
163. Deque in Java
171. Trim in Java
172. RxJava
173. Recursion in Java
174. HashSet Java
176. Square Root in Java
189. Javafx
POJO improves the comprehensibility and re-usability of Java programs. The POJO files do not have any ties with the Java Frameworks. Hence, every Java Program can operate it. A POJO class in Java generally consists of variable values, getters, and setters.
POJOs are free objects that help conduct data transfer, connect the components of a distributed operation model, improve communication between the layers of an application, and integrate variables in Java or encapsulation. A typical POJO class in Java example is to define the object values, like creating an Employee class in POJO that defines particular entities.
The Controller in an MVC architecture communicates with the business logic, followed by interaction with the POJO class to access the data in Java. Accessing objects from a POJO class can be done by:
A POJO class can be operated by accessing its name without necessarily implementing the Serializable interface since it has no mandatory standards.
POJO (full form in Java: Plain Old Java Object) defines an object in Java that does not require a classpath. It has no bounds or special restrictions except the ones implemented by the Java Language Specification. POJOs are popular in programming because they are low maintenance and easy to read and write.
This tutorial provides an uncomplicated guide on how to use POJO class in Java. It presents an exceptional and understandable narrative on the various concepts of the POJO class in Java.
To use a Plain Old Java Object, you must follow a few guidelines and a specific syntax. Let us first discuss the syntax.
We first begin by declaring a class and giving it a meaningful name. Ensure that the class is public and follows the Java naming conventions (e.g., using CamelCase).
Example:
public class Person {
// Class members and methods will be defined here
}
Private fields are used to encapsulate the data in the POJO. Use appropriate data types for each field (int for numbers and String for text).
Example:
public class Person {
private String name;
private int age;
// Other fields...
}
Provide public getter and setter methods for each private field to allow access to the data. We must also follow the naming convention for getters and setters.
Example:
public class Person {
private String name;
private int age;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
// Other getters and setters...
}
We can add methods to perform specific operations or implement business logic in the POJO. These methods can be public or private based on their usage.
Example:
public class Person {
private String name;
private int age;
// Constructors, getters, setters...
public void celebrateBirthday() {
age++;
System.out.println("Happy birthday to " + name + "!");
}
// Other methods...
}
To use the POJO, we must now create an instance of the class and access its methods and fields.
public class Main {
public static void main(String[] args) {
// Create an instance of the Person class
Person person = new Person();
// Set values using setters
person.setName("John");
person.setAge(30);
// Access values using getters
System.out.println("Name: " + person.getName());
System.out.println("Age: " + person.getAge());
// Call other methods
person.celebrateBirthday();
}
}
Now that we know how to use Plain Old Java Objects, here is a working program in Java:
(We must first make two separate files for the below program, a Person.java file and a Main.java file for the Person and Main classes.
(Person.java file)
public class Person {
private String name;
private int age;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public void celebrateBirthday() {
age++;
System.out.println("Happy birthday to " + name + "!");
}
}
(Main.java file)
public class Main {
public static void main(String[] args) {
// Create an instance of the Person class
Person person = new Person();
// Set values using setters
person.setName("Woobie");
person.setAge(28);
// Access values using getters
System.out.println("Name: " + person.getName());
System.out.println("Age: " + person.getAge());
// Call other methods
person.celebrateBirthday();
}
}
In the above program, the Person class represents the POJO with private fields (name and age), public getter and setter methods, and an additional method (celebrateBirthday()). The Main class contains the main method, which creates an instance of the Person class using the new keyword, sets values using setters, retrieves values using getters, and calls the celebrateBirthday() method.
The term POJO was coined in 2000 by Martin Fowler, an America-based software developer. Since the introduction of Enterprise JavaBeans or EJB 3.0 (a well-designed server-side component system for business applications) by Sun Microsystem, Java has allowed access to the POJO class.
Some key factors define POJO Class in Java, such as:
POJO class in Java does not require mandatory actions on naming the conventions, making it comparatively easier to work with while reading or writing file programs. Java framework does not bind the POJO operations, reducing its dependency on other annotations, interfaces and libraries. This makes POJO suitable for multiple web and desktop-based projects, generating a basic idea of when to use POJO class in Java.
If you are interested in learning how to get data from POJO class in Java, there are some key dos and dont’s to remember.
A POJO class is an object class in Java that can be used in a few steps.
(Book.java file)
public class Book {
private String title;
private String author;
private int publicationYear;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public int getPublicationYear() {
return publicationYear;
}
public void setPublicationYear(int publicationYear) {
this.publicationYear = publicationYear;
}
}
In this example, we have a Book class as a POJO representing a book with title, author, and publication year as its properties.
The class has private fields title, author, and publicationYear, along with their corresponding getter and setter methods.
The getter methods allow you to retrieve the values of title, author, and publicationYear, while the setter methods allow you to set the values for these properties.
Using this Book class, you can create instances of books, set their title, author, and publication year using the setter methods, and retrieve these values using the getter methods.
(Main.java file)
public class Main {
public static void main(String[] args) {
// Create a book instance
Book book = new Book();
// Set book details
book.setTitle("To Kill a Mockingbird");
book.setAuthor("Harper Lee");
book.setPublicationYear(1960);
// Retrieve book details
System.out.println("Title: " + book.getTitle());
System.out.println("Author: " + book.getAuthor());
System.out.println("Publication Year: " + book.getPublicationYear());
}
}
In the Main.java file, we create an instance of the Book class, set the book's title, author, and publication year using the setter methods, and retrieve these details using the getter methods.
Here are the essentials of the POJO class:
JavaBeans is a software component model for Java, which provides a set of conventions and guidelines for creating reusable and customizable components. JavaBeans are Java classes that follow specific naming conventions and design patterns to enable their integration into various development frameworks and tools.
POJO and JavaBean are two different concepts in Java development. JavaBean is a particular type of POJO that follows a set of conventions and guidelines defined by the JavaBeans component model.
The main difference between a POJO and a JavaBean lies in the adherence to conventions and additional features provided by JavaBeans. POJOs are more general-purpose Java classes that focus on data encapsulation. At the same time, JavaBeans follow specific naming and design patterns to enable integration with frameworks and tools that rely on the JavaBeans component model.
POJO has no specific restrictions or requirements regarding naming conventions or interfaces. Meanwhile, JavaBean classes have specific naming conventions for properties, methods, and events, such as getXxx/setXxx for properties and addXxx/removeXxx for events.
The POJO class comprises the same members as in the database entity. Viewing through a Model View Controller architecture allows an interaction between the controller and the business logic, followed by contacting the POJO class in Java to access the object value.
This tutorial provides a comprehensible insight into the concept of POJO classes in Java and explains its aspects. You can look for relevant courses on Java from upGrad to build up your expertise and improve your understanding of Java programs, especially if you are willing to excel in the POJO class in Java interview questions.
1. What does a POJO class contain?
POJO class in Java generally consists of variables with getters and setters for the respective values. POJO classes can be visualized similarly to Beans since both help define objects that can improve the re-usability and readability of the files.
2. What is the difference between entity class and POJO class?
There are no typical differences between a POJO class and an entity class. Adding annotations like @ENTITY to a POJO class can lead to considering that class as an Entity class. Hence, once you set the properties using the getter and setter method, every entity class is a POJO class.
3. Can POJO have logic?
Yes, POJO can have business logic to fulfill its internal state and solve the communication needs with external sources like persisting data and interested parties.
Take the Free Quiz on Java
Answer quick questions and assess your Java knowledge
Author
Talk to our experts. We are available 7 days a week, 9 AM to 12 AM (midnight)
Indian Nationals
1800 210 2020
Foreign Nationals
+918045604032
1.The above statistics depend on various factors and individual results may vary. Past performance is no guarantee of future results.
2.The student assumes full responsibility for all expenses associated with visas, travel, & related costs. upGrad does not provide any a.