问题描述
我正在尝试使用Jpa存储库从数据库中获取记录,并将其显示在一个jsp文件中。但是在运行我的应用程序时,我得到的结果是:
可选[com.app.daApp.model.Appointment @ .......]
控制器:
@GetMapping("getAppointment")
public String getAppointment(Model m)
{
//System.out.println(myappservice.getId());
m.addAttribute("result",myappservice.showAppointments());
return "showappointment.jsp";
}
服务:
public Optional<Appointment> showAppointments()
{
return apprepo.findById(this.id);
}
Jsp文件:
<html>
<head>
<Meta charset="ISO-8859-1">
<title>My Appointments</title>
</head>
<body>
Your appointments:
${result}
</body>
</html>
解决方法
尝试此操作,返回时.get()
。
public Optional<Appointment> showAppointments()
{
return apprepo.findById(this.id).get();
}