这是我的控制器
@Controller
public class tdlController {
@Autowired
TdlService tdlService;
@GetMapping("/dmno")
public String homepage(Model model) throws RuntimeException {
// model.addAttribute("list",tdlService.findAll());
return "dmno";
}
@RequestMapping("GetData2")
@ResponseBody
public List<ListtodoEntity> findAll(){
return tdlService.findAll();
}
}
我在这里尝试了很多方法但没有成功。帮我!