First Program In Java

Before developing first Java program , we need to have below things set. 1) JDK Installation Download and install the JDK using below link Java download link 2) Set the jdk path Now write the Java program either in notepad or in eclipse IDE. class FirstJavaProgram{       public static void main(String args[]){   […]

Share this article on

Introduction to Hibernate framework

Before understanding Hibernate, let’s understand about ORM. What is ORM ? ORM stands for Object Relational Mapping In any Java application, we will have objects which are representing the data that we store in the Database. To store the data in the database, we need tables to be created in the DB and these tables […]

Share this article on
< Previous Next >