一、limit关键字
service层
@Service @Transactional public class ImplStudentService implements StudentService { @Resource private StudentDao studentDao; @Override public List<Student> selectAllStudent(String province, Integer offset, Integer limit) { return studentDao.selectAll(province,offset,limit); } }