@GetMapping("list") @ResponseBody public List<Attendance> list(HttpSession session) { Integer userid = (Integer) session.getAttribute("userid"); List<Attendance> attendanceList = attendanceService.getAttendanceList(userid, userService.getById(userid).getPositionid()); List<Attendance> listE = new ArrayList<>(); attendanceList.forEach(list -> { listE.add(attendanceService.assignment(list)); }); session.setAttribute("list", listE); // 将 listE 存储到 session 中 return listE; }
时间: 2024-03-30 19:38:13 浏览: 318
这段代码是一个使用Spring框架的Java Web应用程序中的一个控制器方法,它使用HTTP GET请求处理程序映射"/list",并返回一个包含Attendance对象的列表。方法使用HttpSession参数来获取当前用户的ID,然后调用attendanceService.getAttendanceList方法来获取与该用户相关的考勤记录列表。然后,该方法使用一个foreach循环来将每个Attendance对象分配给一个新的List对象(listE),并将其存储在HttpSession中。最后,该方法返回List对象(listE)作为响应主体。
相关问题
@GetMapping("search/{name}") @ResponseBody public List<Attendance> search(@PathVariable("name") String name, HttpSession session) { Integer userid = (Integer) session.getAttribute("userid"); List<Attendance> attendanceList = attendanceService.searchBox(userid, name, userService.getById(userid).getPositionid()); List<Attendance> listE = new ArrayList<>(); if (attendanceList != null) { attendanceList.forEach(list -> { listE.add(attendanceService.assignment(list)); }); } session.setAttribute("list", listE); // 将 listE 存储到 session 中 return listE; }
这段代码是一个使用 Spring MVC 框架实现的 RESTful API 接口,使用了 @GetMapping 和 @ResponseBody 注解。其中 @GetMapping("search/{name}") 表示接收 GET 请求,URL 中的 {name} 参数会被传递到 name 变量中。@ResponseBody 表示返回的数据将作为响应内容,而不是跳转到某个页面。该方法的作用是根据用户 ID、姓名和职位 ID 查询考勤记录,并将查询结果存储到 session 中,最后返回查询结果的集合。其中 attendanceService 是 AttendanceService 类的实例,userService 是 UserService 类的实例。
// // Source code recreated from a .class file by IntelliJ IDEA // (powered by FernFlower decompiler) // package com.liruilong.hros.controller.statistics; import com.liruilong.hros.model.datas.DataModel; import com.liruilong.hros.service.EmployeeService; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController @RequestMapping({"/statistics/personnel"}) public class PersonnelController { @Autowired EmployeeService employeeService; public PersonnelController() { } @Scheduled( cron = "0 0 3 * * ?" ) @GetMapping({"/Position"}) public List<DataModel> DataViewPosition() { return this.employeeService.dataViewPosition(); } @Scheduled( cron = "0 0 3 * * ?" ) @GetMapping({"/JobLevel"}) public List<DataModel> DataViewJobLevel() { return this.employeeService.dataViewJobLevel(); } @Scheduled( cron = "0 0 3 * * ?" ) @GetMapping({"/Department"}) public List<DataModel> DataViewDepartment() { return this.employeeService.dataViewDepartment(); } @Scheduled( cron = "0 0 3 * * ?" ) @GetMapping({"/tiptopdegree"}) public List<DataModel> DataViewtiptopdegree() { return this.employeeService.dataViewtiptopdegree(); } @Scheduled( cron = "0 0 3 * * ?" ) @GetMapping({"/school"}) public List<DataModel> DataViewschool() { return this.employeeService.dataViewschool(); } @Scheduled( cron = "0 0 3 * * ?" ) @GetMapping({"/nation"}) public List<DataModel> DataViewNation() { return this.employeeService.dataViewNation(); } @Scheduled( cron = "0 0 3 * * ?" ) @GetMapping({"/politicsstatus"}) public List<DataModel> DataViewPoliticsstatus() { return this.employeeService.dataViewPoliticsstatus(); } }
这是一段Java代码,是一个名为PersonnelController的类,它位于com.liruilong.hros.controller.statistics包中。该类有七个公共方法,分别为DataViewPosition、DataViewJobLevel、DataViewDepartment、DataViewtiptopdegree、DataViewschool、DataViewNation和DataViewPoliticsstatus。这些方法都使用了@GetMapping注释,它们将在指定时间(cron表达式中指定)调用,并返回一个List<DataModel>对象。该类还使用了@Autowired注释,以注入一个名为employeeService的EmployeeService对象。另外,该类还使用了@Scheduled注释,以指定每个方法的调用时间。
阅读全文