网络知识 娱乐 查表的数据

查表的数据

package com.atguigu.eduservice.controller;nnnimport com.atguigu.eduservice.entity.EduTeacher;nimport com.atguigu.eduservice.service.EduTeacherService;nimport org.springframework.beans.factory.annotation.Autowired;nimport org.springframework.web.bind.annotation.GetMapping;nimport org.springframework.web.bind.annotation.RequestMapping;nnimport org.springframework.web.bind.annotation.RestController;nnimport java.util.List;nn/**n * <p>n * 讲师 前端控制器n * </p>n *n * @author testjavan * @since 2022-06-23n */n@RestControllern@RequestMapping("/eduservice/teacher")npublic class EduTeacherController {nn //把service注入n @Autowiredn private EduTeacherService teacherService;nn// 1 查询讲师表所有数据n //rest风格n @GetMapping("findAll")n public List<EduTeacher> findAllTeacher(){n //调用service方法实现查询所有的讲师n List<EduTeacher> list = teacherService.list(null);n return list;n }nnn}n