123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?xml version='1.0' encoding='utf-8'?>
- <!DOCTYPE hibernate-configuration PUBLIC
- "-//Hibernate/Hibernate Configuration DTD//EN"
- "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
- <hibernate-configuration>
- <session-factory>
- <property name="connection.url">jdbc:mysql://localhost:3306/anketa</property>
- <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
- <property name="connection.username">root</property>
- <property name="connection.password">admin</property>
- <property name="hibernate.dialect">org.hibernate.dialect.Oracle10gDialect</property>
- <property name="hibernate.connection.characterEncoding">UTF-8</property>
- <mapping resource="ClientsEntity.hbm.xml"/>
- <mapping class="HibernateEntities.ClientsEntity"/>
- <mapping class="HibernateEntities.GroupsEntity"/>
- <mapping resource="GroupsEntity.hbm.xml"/>
- <mapping class="HibernateEntities.ModeratorsEntity"/>
- <mapping resource="ModeratorsEntity.hbm.xml"/>
- <mapping resource="ProjectsEntity.hbm.xml"/>
- <mapping class="HibernateEntities.ProjectsEntity"/>
- <mapping class="HibernateEntities.StPrEntity"/>
- <mapping resource="StPrEntity.hbm.xml"/>
- <mapping resource="StudentsEntity.hbm.xml"/>
- <mapping class="HibernateEntities.StudentsEntity"/>
- <mapping resource="UsersEntity.hbm.xml"/>
- <mapping class="HibernateEntities.UsersEntity"/>
- <mapping resource="Project_mod_skillEntity.hbm.xml"/>
- <mapping class="HibernateEntities.ProjectStaffSkillEntity"/>
- <mapping resource="Project_skil_catEntity.hbm.xml"/>
- <mapping class="HibernateEntities.ProjectSkillCatEntity"/>
- <mapping resource="Skil_catEntity.hbm.xml"/>
- <mapping class="HibernateEntities.SkillCatEntity"/>
- <mapping resource="Skil_listEntity.hbm.xml"/>
- <mapping class="HibernateEntities.SkillListEntity"/>
- <mapping class="HibernateEntities.MatchSkilEntity"/>
- <mapping resource="Skil_matchEntity.hbm.xml"/>
- <mapping class="HibernateEntities.StudentListSkills"/>
- <mapping resource="StudentListSkills.hbm.xml"/>
- <mapping class="HibernateEntities.ModeratorListSkills"/>
- <mapping resource="ModerListSkills.hbm.xml"/>
- <!-- <property name="connection.username"/> -->
- <!-- <property name="connection.password"/> -->
- <!-- DB schema will be updated if needed -->
- <!-- <property name="hbm2ddl.auto">update</property> -->
- </session-factory>
- </hibernate-configuration>
|