It involves two files :-
- Hibernate configuration file (.cfg.xml)
 - Hibernate mapping file (.hbm.xml)
 
Hibernate configuration file :-
<hibernate-configuration>
    
<session-factory>
    
<property name="hibernate.dialect">
      org.hibernate.dialect.MySQLDialect
   </property>
    
<property name="hibernate.connection.driver_class">
      com.mysql.jdbc.Driver
   </property> 
 <!-- Assume test is the database name -->
    
<property name="hibernate.connection.url">
      jdbc:mysql://localhost/test
   </property>
    
<property name="hibernate.connection.username">
      root
   </property>
    
<property name="hibernate.connection.password">
      root123 
   </property>
    
<!-- List of XML mapping files -->
<mapping resource="Employee.hbm.xml"/>
</session-factory>
</hibernate-configuration>
Properties :-
hibernate.dialect :-
Hibernate Mapping File :-
<!-- List of XML mapping files -->
<mapping resource="Employee.hbm.xml"/>
</session-factory>
</hibernate-configuration>
Properties :-
hibernate.dialect :-
Hibernate Mapping File :-