testCreate(10000, 20000);
}
private static void testCreate(final int start, final int times) {
for (int i = start; i < times; i++) {
Song song = new Song();
song.setArtist("群星_" + i);
song.setName("北京欢迎你");
song.setLyric("北京欢迎你,welcome to beijing,第29届奥林匹克运动会");
song.setTime(new Date());
song.setArtistCityId(i % 8);
service.addSong(song);
System.out.println(song.getId()+" "+i);
}
}