67,549
社区成员




dao层
public int test(@Param("bookids")int [] bookids);
执行代码
int [] bookids = null;
for(int i=0;i<1000;i++) {
bookids = new int [1000];
for(int j=0;j<1000;j++) {
bookids[j]=i*1000+j;
}
dao.test(bookids);
}