如何从springboot中的特定字段获取另一个实体的特定数据

时间:2018-04-26 08:14:19

标签: spring hibernate rest spring-boot

SpringBoot 学生朋友列表监控,为其创建了2个模型类,如StudentFriendList

Student->blockedList table(one to many relationship)
FriendList->student table(many to one relationship)

学生表包含

  • studentid,name,dob,school,college

朋友表包含

  • friendid,studentid(来自学生的外键),stufid()(外国人 来自学生的钥匙)

我需要通过传递(studentid),

来检索学生朋友的详细信息
{
  studentid:
   friendlist[
       { 
          stufid:
          name:
          dob:
        },
       { 
          stufid:
          name:
          dob:
        }
   ]

}

0 个答案:

没有答案