Re: iBATIS 3 dynamic sql 'foreach' list got problem.

2010-06-08 Thread bruce666
and how to foreach a enum list when using sqlmap? bruce666 wrote: > > I am used ibatis 3.0 GA; > > those are my JavaBean classes, > > public class SearchObject { > private Long id; > private List childIdList = new ArrayList(); > public Long getId() { >

iBATIS 3 dynamic sql 'foreach' list got problem.

2010-06-08 Thread bruce666
I am used ibatis 3.0 GA; those are my JavaBean classes, public class SearchObject { private Long id; private List childIdList = new ArrayList(); public Long getId() { return id; } public void setId(Long id) { this.id = id; } public List getChildIdList () { return ch