首页>代码>spring boot+spring data jpa+h2实现quartz任务管理系统>/spring-boot-quartz-master/src/main/java/com/stackabuse/controller/IndexController.java
package com.stackabuse.controller; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; import com.stackabuse.entity.SchedulerJobInfo; import com.stackabuse.service.SchedulerJobService; @Controller public class IndexController { @Autowired private SchedulerJobService scheduleJobService; @GetMapping("/index") public String index(Model model){ List<SchedulerJobInfo> jobList = scheduleJobService.getAllJobList(); model.addAttribute("jobs", jobList); return "index"; } }


微信网友_7525238679375872 LV1
5月25日
yimaoermao LV1
2024年11月28日
TY0165 LV20
2024年6月17日
Gin19960217 LV4
2024年4月15日
zjjhzjb LV15
2024年3月20日
woldxy LV12
2024年2月19日
百里守寡 LV5
2024年2月5日
WBelong LV8
2023年12月27日
yuning1993 LV6
2023年9月19日
zh11332 LV11
2023年9月12日