Last active
January 23, 2020 21:42
-
-
Save seycileli/679110989e4671daf371a78cbafeb3b0 to your computer and use it in GitHub Desktop.
How To Create hibernate.cfg.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 --> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.