Без опису

hibernate-annotation.cfg.xml 869B

1234567891011121314
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
  3. "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  4. <hibernate-configuration>
  5. <session-factory name="">
  6. <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
  7. <property name="hibernate.connection.password">tokki1127</property>
  8. <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/annotation</property>
  9. <property name="hibernate.connection.username">root</property>
  10. <property name="hibernate.dialect">org.hibernate.dialect.MariaDB53Dialect</property>
  11. <property name="hibernate.current_session_context_class">thread</property>
  12. <property name="hibernate.show_sql">true</property>
  13. </session-factory>
  14. </hibernate-configuration>