欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

SubList分页-013-SubListStudentServiceImpl类

程序员文章站 2024-03-18 13:49:28
...

1.实现接口StudentService,返回Pager
2.添加成员:SubListStudentDAOImpl对象

package top.itcourse.page.service;

import top.itcourse.page.dao.StudentDAO;
import top.itcourse.page.dao.SubListStudentDAOImpl;
import top.itcourse.page.model.Pager;
import top.itcourse.page.model.Student;

/*
 * SubListStudentServiceImpl类:
 *  1.实现接口StudentService,返回Pager<Student>
 *  2.添加成员:SubListStudentDAOImpl对象
 */
public class SubListStudentServiceImpl implements StudentService {

    private StudentDAO studentDAO;  

    public SubListStudentServiceImpl() {
        // 初始化studentDAO
        studentDAO = new SubListStudentDAOImpl();
    }

    @Override
    public Pager<Student> findStudent(Student searchModel, int currentPage, int pageSize) {
//      System.out.println("currentPage: " + currentPage);  
        // 获取查询到的Pager<Student>
        Pager<Student> result = studentDAO.findStudent(searchModel, currentPage, pageSize);

        return result;
    }

    public StudentDAO getStudentDAO() {
        return studentDAO;
    }

    public void setStudentDAO(StudentDAO studentDAO) {
        this.studentDAO = studentDAO;
    }
}

源码下载

关注下方的微信公众号,回复:java_div_page.code



SubList分页-013-SubListStudentServiceImpl类



欢迎加入交流群:451826376


更多信息:www.itcourse.top

SubList分页-013-SubListStudentServiceImpl类

相关标签: 分页