Change By: Davide D'Alto (08/Feb/13 9:24 AM)
Description: MongoDB throws the exception because the table field contains a $ signed in the name.

{code}
Caused by: com.mongodb.MongoException: cannot update reserved $ collection
{code}

Example:
{code}
@Entity
@Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
public class CommunityMember {

@Id
public String name;
...
@Entity
public static class Employee extends CommunityMember {
...
}
}
{code}
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira