Subversion Repositories WebE

Rev

Rev 19 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

1
<?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.connection.driver_class">com.mysql.jdbc.Driver</property>
               
                <property name="hibernate.connection.url">jdbc:mysql://localhost/webengineering</property>
                <property name="hibernate.connection.username">webEngineering</property>
                <property name="connection.password">ontologie</property>
               
                <property name="connection.pool_size">1</property>
                <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
                <property name="show_sql">true</property>
                <property name="hbm2ddl.auto">create</property>
                <mapping class="ch.ffhs.webE.domain.User" />
        </session-factory>
</hibernate-configuration>