You don't mention which version of AppFuse you are using, but if it is 2.0you should use strongly typed collections:
private List<Operation> operations; public List<Operation> getOperations() ; Mike On 10/16/07, George.Francis <[EMAIL PROTECTED]> wrote: > > > In my datamode an Application is associated with many Operations, so I > added > a List member variable to my Applications class, ie: > > private List operations; > public List getOperations() ; > > When I run mvn hibernate3:hbm2ddl, I get: > > org.hibernate.MappingException: Could not determine type for: > java.util.List, for columns: [org.hibe > rnate.mapping.Column(operations)] > > What am I missing? > -- > View this message in context: > http://www.nabble.com/MappingException-in-OneToMany-bean-relationship-tf4636245s2369.html#a13240722 > Sent from the AppFuse - User mailing list archive at Nabble.com. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >
