What steps will reproduce the problem? If applicable, please provide a
mapping configuration and sample record input to recreate the problem.
@Group
public class MyGroup {
@Group
Collection<SimpleGroup> list;
}
BeanIOConfigurationException is thrown: At least one record or group is required
Please provide any additional information below.
The problem is (I suppose) in type of annotated object identification.
I tried to specify group type using "type" group's annotation attribute, but it
doesn't work also.
When I debugged source of beanio, I found that in createGroup() method:
updateTypeInfo(info, info.type, group.collection())
it should be:
updateTypeInfo(info, group.type(), group.collection())
like in other createXXX() methods
What version of BeanIO are you using? What JDK version?
2.1.0.M2
Original issue reported on code.google.com by Yuri.Bul...@gmail.com on 4 Feb 2014 at 4:41
Original issue reported on code.google.com by
Yuri.Bul...@gmail.com
on 4 Feb 2014 at 4:41