Skip to content

Instantly share code, notes, and snippets.

@seycileli
Last active January 23, 2020 21:42
Show Gist options
  • Save seycileli/679110989e4671daf371a78cbafeb3b0 to your computer and use it in GitHub Desktop.
Save seycileli/679110989e4671daf371a78cbafeb3b0 to your computer and use it in GitHub Desktop.
How To Create hibernate.cfg.xml
<?xml version = "1.0" encoding = "utf-8"?>
<!DOCTYPE hibernate-configuration SYSTEM
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<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>
<!-- source: https://www.tutorialspoint.com/hibernate/hibernate_configuration.htm -->
@seycileli
Copy link
Author

Source below:

https://www.tutorialspoint.com/hibernate/hibernate_configuration.htm

You can also find the proper info for whichever Database & Dialect Property you're looking for via the link.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment