我正在用 Java8
学习 SpringBoot2.0
。
我还参考了一些博客制作教程的例子。
教程的源代码是:
@GetMapping("/{id}/edit")
public String edit(@PathVariable Long id, Model model) {
model.addAttribute("categoryDto", categoryService.findOne(id));
return "category/edit";
}
但是这个代码抛出了这个错误:
FindOne (id)
我正在考虑将 JPAfindOne()
方法更改为 Optional< S >
怎么解决呢?
更多信息:
这是 typeyService 方法:
public Category findOne(Long id) {
return categoryRepository.findOne(id);
}