The ibatis project has moved and been renamed.
It is no longer being maintained as an Apache project, but has moved
(along with the development team) here:
http://www.mybatis.org/
Please join us at the new location by joining the mailing list here:
http://groups.google.com/group/mybatis-user
L
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() {
> return id;
> }
> public voi
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