Skip to content

Instantly share code, notes, and snippets.

@wmuron
Created October 20, 2016 13:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wmuron/65fad8663d2278bdb278e2b7ab88dcbb to your computer and use it in GitHub Desktop.
Save wmuron/65fad8663d2278bdb278e2b7ab88dcbb to your computer and use it in GitHub Desktop.
HBM mapping file for DbAssist article
<hibernate-mapping>
<class name="com.montrosesoftware.dbassist.User" table="users">
<id name="id" type="integer">
<column name="id" />
</id>
<property name="name" type="string" length="100" column="name"/>
<property name="createdAtUtc" type="timestamp" column="created_at_utc"/>
</class>
</hibernate-mapping>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment