Hi All
In my mapping file I have a list with a key, index and composite-element
<list
name="allowedFileExtensions"
table="AllowedFileExtensions"
>
<key
column="UUID"
>
</key>
<index
column="extension"
>
</index>
<composite-element
class="string"
>
</composite-element>
</list>
When I create the database using ant and the org.hibernate.tool.ant.HibernateToolTask ant task, a column extension is made but it's of type integer. I want to create a list of String's. I have tried eveything. All kind of class types: String, string java.lang.string etc. I also tried different types for index but nothing works.
I tried the search but came up empty.
Has anybody got an idea?
Can anybody help me
|