这是我的控制器
@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();
}
}
我在这里尝试了很多方法但没有成功。帮我!
将 dmno 文件的类型从 更改为
.jsp
并将.html
其移动dmno.html
到以下位置还要确保您的 pom.xml 中有这些依赖项
该
spring-boot-starter-thymeleaf
依赖项将处理 html 文件的渲染