Hibernate is an ORM Open source component
Source: http://sourceforge.net/projects/hibernate/
1.Hibernate configuration file.
Default configuration file: Hibernate.cfg.xml
Pre-preparation documents: Hibernate.properties
Path to the Open Source project folder for its two files: hibernate-release-x.x.x\project\etc
Source code for Hibernate.cfg.xml files
<!--~ Hibernate, relational persistence for idiomatic Java ~ ~ License:gnu Lesser general public License (LGPL), vers Ion 2.1 or later. ~ See the Lgpl.txt file in the root directory or <HTTP://WWW.GNU.ORG/LICENSES/LGPL-2.1.HTML>. -<!DOCTYPE hibernate-configuration Public "-//hibernate/hibernate configuration DTD 3.0//en" "Http://www.hibernate. Org/dtd/hibernate-configuration-3.0.dtd "><hibernate-configuration> <session-factoryname= "Foo"> < Propertyname= "dialect">Org.hibernate.dialect.MySQLDialect</ Property> < Propertyname= "Connection.driver_class">Com.mysql.jdbc.Driver</ Property> < Propertyname= "Connection.url">Jdbc:mysql:///test</ Property> < Propertyname= "Connection.username">Xx</ Property> < Propertyname= "Connection.password">Xx</ Property> </session-factory></hibernate-configuration>
Hibernate Basics (i)