Termadmin.hibernate.cfg.xml

Aus Termserver-CTS2
(Unterschied zwischen Versionen)
Wechseln zu: Navigation, Suche
 
(2 dazwischenliegende Versionen von einem Benutzer werden nicht angezeigt)
Zeile 6: Zeile 6:
 
     <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
 
     <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
 
     <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
 
     <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
     <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/web5db2</property>
+
     <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/DATENBANKNAME</property>
     <property name="hibernate.connection.username">web5u2</property>
+
     <property name="hibernate.connection.username">BENUTZERNAME</property>
     <property name="hibernate.connection.password">derTermBoSS#</property>
+
     <property name="hibernate.connection.password">PASSWORT</property>
 
     <property name="hibernate.show_sql">false</property>
 
     <property name="hibernate.show_sql">false</property>
 
     <property name="hibernate.current_session_context_class">thread</property>
 
     <property name="hibernate.current_session_context_class">thread</property>
 
     <property name="show_sql">false</property>
 
     <property name="show_sql">false</property>
+
    <property name="dialect">org.hibernate.dialect.MySQL5Dialect</property>
     <mapping class="de.fhdo.terminologie.db.hibernate.LicenceType"/>
+
 
     <mapping class="de.fhdo.terminologie.db.hibernate.DomainValue"/>
+
     <mapping class="de.fhdo.db.hibernate.LicencedUserId"/>
     <mapping class="de.fhdo.terminologie.db.hibernate.Domain"/>
+
    <mapping class="de.fhdo.db.hibernate.TermUser"/>
     <mapping class="de.fhdo.terminologie.db.hibernate.LicencedUser"/>
+
     <mapping class="de.fhdo.db.hibernate.MetadataParameter"/>
     <mapping class="de.fhdo.terminologie.db.hibernate.CodeSystem"/>
+
    <mapping class="de.fhdo.db.hibernate.CodeSystem"/>
     <mapping class="de.fhdo.terminologie.db.hibernate.LicencedUserId"/>
+
     <mapping class="de.fhdo.db.hibernate.AssociationType"/>
     <mapping class="de.fhdo.terminologie.db.hibernate.Session"/>
+
    <mapping class="de.fhdo.db.hibernate.CodeSystemConceptTranslation"/>
     <mapping class="de.fhdo.terminologie.db.hibernate.TermUser"/>
+
     <mapping class="de.fhdo.db.hibernate.CodeSystemEntityVersionAssociation"/>
     <mapping class="de.fhdo.terminologie.db.hibernate.HibernateUtil"/>
+
    <mapping class="de.fhdo.db.hibernate.ValueSetVersion"/>
     <mapping class="de.fhdo.terminologie.db.hibernate.SysParam"/>
+
     <mapping class="de.fhdo.db.hibernate.CodeSystemEntity"/>
     <mapping class="de.fhdo.terminologie.db.hibernate.CodeSystemVersion"/>
+
    <mapping class="de.fhdo.db.hibernate.ConceptValueSetMembership"/>
 +
     <mapping class="de.fhdo.db.hibernate.PropertyVersion"/>
 +
    <mapping class="de.fhdo.db.hibernate.CodeSystemConcept"/>
 +
     <mapping class="de.fhdo.db.hibernate.CodeSystemVersion"/>
 +
    <mapping class="de.fhdo.db.hibernate.LicenceType"/>
 +
    <mapping class="de.fhdo.db.hibernate.SysParam"/>
 +
    <mapping class="de.fhdo.db.hibernate.CodeSystemEntityVersion"/>
 +
    <mapping class="de.fhdo.db.hibernate.CodeSystemVersionEntityMembership"/>
 +
    <mapping class="de.fhdo.db.hibernate.ValueSet"/>
 +
    <mapping class="de.fhdo.db.hibernate.Session"/>
 +
     <mapping class="de.fhdo.db.hibernate.DomainValue"/>
 +
    <mapping class="de.fhdo.db.hibernate.LicencedUser"/>
 +
     <mapping class="de.fhdo.db.hibernate.Property"/>
 +
    <mapping class="de.fhdo.db.hibernate.Domain"/>
 +
     <mapping class="de.fhdo.db.hibernate.CodeSystemMetadataValue"/>
 +
    <mapping class="de.fhdo.db.hibernate.CodeSystemVersionEntityMembershipId"/>
 +
     <mapping class="de.fhdo.db.hibernate.ConceptValueSetMembershipId"/>
 +
    <mapping class="de.fhdo.db.hibernate.ValueSetMetadataValue"/>  
 
   </session-factory>
 
   </session-factory>
 
</hibernate-configuration>
 
</hibernate-configuration>
 
</source>
 
</source>

Aktuelle Version vom 26. Juni 2013, 12:41 Uhr

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/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>
    <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/DATENBANKNAME</property>
    <property name="hibernate.connection.username">BENUTZERNAME</property>
    <property name="hibernate.connection.password">PASSWORT</property>
    <property name="hibernate.show_sql">false</property>
    <property name="hibernate.current_session_context_class">thread</property>
    <property name="show_sql">false</property>
    <property name="dialect">org.hibernate.dialect.MySQL5Dialect</property>
 
    <mapping class="de.fhdo.db.hibernate.LicencedUserId"/>
    <mapping class="de.fhdo.db.hibernate.TermUser"/>
    <mapping class="de.fhdo.db.hibernate.MetadataParameter"/>
    <mapping class="de.fhdo.db.hibernate.CodeSystem"/>
    <mapping class="de.fhdo.db.hibernate.AssociationType"/>
    <mapping class="de.fhdo.db.hibernate.CodeSystemConceptTranslation"/>
    <mapping class="de.fhdo.db.hibernate.CodeSystemEntityVersionAssociation"/>
    <mapping class="de.fhdo.db.hibernate.ValueSetVersion"/>
    <mapping class="de.fhdo.db.hibernate.CodeSystemEntity"/>
    <mapping class="de.fhdo.db.hibernate.ConceptValueSetMembership"/>
    <mapping class="de.fhdo.db.hibernate.PropertyVersion"/>
    <mapping class="de.fhdo.db.hibernate.CodeSystemConcept"/>
    <mapping class="de.fhdo.db.hibernate.CodeSystemVersion"/>
    <mapping class="de.fhdo.db.hibernate.LicenceType"/>
    <mapping class="de.fhdo.db.hibernate.SysParam"/>
    <mapping class="de.fhdo.db.hibernate.CodeSystemEntityVersion"/>
    <mapping class="de.fhdo.db.hibernate.CodeSystemVersionEntityMembership"/>
    <mapping class="de.fhdo.db.hibernate.ValueSet"/>
    <mapping class="de.fhdo.db.hibernate.Session"/>
    <mapping class="de.fhdo.db.hibernate.DomainValue"/>
    <mapping class="de.fhdo.db.hibernate.LicencedUser"/>
    <mapping class="de.fhdo.db.hibernate.Property"/>
    <mapping class="de.fhdo.db.hibernate.Domain"/>
    <mapping class="de.fhdo.db.hibernate.CodeSystemMetadataValue"/>
    <mapping class="de.fhdo.db.hibernate.CodeSystemVersionEntityMembershipId"/>
    <mapping class="de.fhdo.db.hibernate.ConceptValueSetMembershipId"/>
    <mapping class="de.fhdo.db.hibernate.ValueSetMetadataValue"/> 
  </session-factory>
</hibernate-configuration>
Meine Werkzeuge
Namensräume
Varianten
Aktionen
Navigation
Werkzeuge