Added Exercise 3 Example Project

Added Exercise 3 Example Project
This commit is contained in:
Togepy95
2017-04-27 12:58:49 +02:00
parent 0648382c86
commit 3bc63e5442
32 changed files with 2559 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<class name="de.dis2013.data.Person" table="personen">
<id name="id" column="id">
<generator class="native" />
</id>
<property name="vorname" type="string" column="vorname" />
<property name="nachname" type="string" column="nachname" />
<property name="adresse" type="string" column="adresse" />
</class>
</hibernate-mapping>