首页>代码>spring boot+mybatis+mysql项目搭建入门实例>/springbootdemo/src/main/java/cn/wmyskxz/springboot/service/impl/StudentServiceImpl.java
package cn.wmyskxz.springboot.service.impl;
import cn.wmyskxz.springboot.mapper.StudentMapper;
import cn.wmyskxz.springboot.pojo.Student;
import cn.wmyskxz.springboot.service.StudentService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* Created by Administrator on 2018/7/9.
*/
@Service(value = "studentService")
public class StudentServiceImpl implements StudentService{
@Autowired
private StudentMapper studentMapper;
@Override
public List<Student> findAll() {
return studentMapper.findAll();
}
}

最近下载
最近浏览