i need to know how to use the bag tag and what is the purpose?

link|improve this question
feedback

3 Answers

For collection mapping

If your table does not have an index column, and you still wish to use List as the property type, you can map the property as a Hibernate < bag>. A bag does not retain its order when it is retrieved from the database, but it can be optionally sorted or ordered.

http://docs.jboss.org/hibernate/core/3.3/reference/en/html/collections.html

link|improve this answer
feedback

From the API:

A bag is an unordered, unkeyed collection that can contain the same element multiple times. A bag permits duplicates, so it has no primary key. The Java collections API, curiously, has no Bag.

link|improve this answer
feedback

You have to use Apache Commons Collections 2.0

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.