Skip to content

Commit

Permalink
#46 - Support <entity/> overrides
Browse files Browse the repository at this point in the history
#47 - Support dynamic <entity/> and <embeddable/> mappings
  • Loading branch information
sebersole committed Oct 23, 2023
1 parent 5ba6a8a commit f34a30b
Showing 1 changed file with 6 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,16 @@
<entity name="SimpleEntity" metadata-complete="true">
<attributes>
<id name="id">
<java-type>
<class>Integer</class>
</java-type>
<target>Integer</target>
<jdbc-type-name>BIGINT</jdbc-type-name>
</id>
<basic name="name">
<java-type>
<class>String</class>
</java-type>
<java-type>org.hibernate.type.descriptor.java.StringJavaType</java-type>
<jdbc-type-code>12</jdbc-type-code>
</basic>
<basic name="quantity">
<java-type>
<class>int</class>
</java-type>
<target>int</target>
<jdbc-type>org.hibernate.type.descriptor.jdbc.BigIntJdbcType</jdbc-type>
</basic>
</attributes>
</entity>
Expand Down

0 comments on commit f34a30b

Please sign in to comment.