У меня есть таблица с именем StudentLesson с первичным составным ключом StudentLessonPk, который состоит из Student_id и Lesson_id. Я хотел бы получить уроки ученика по идентификатору, но, конечно, я не могу передать объект в переменную пути.
Я очень новичок в весенней JPA, любая помощь очень ценится. Мой код для справки:
@Embeddable
public class StudentLessonPK implements Serializable{
private static final long serialVersionUID = 5611658036387185008L;
@Column(name = "Student_Id")
private String Student_Id;
@Column(name = "Lesson_Id")
private String Lesson_Id;
//GETTERS AND SETTERS
public String getStudent_Id() {
return Student_Id;
}
public void setStudent_Id(String student_Id) {
Student_Id = student_Id;
}
public String getLesson_Id() {
return Lesson_Id;
}
public void setLesson_Id(String lesson_Id) {
Lesson_Id = lesson_Id;
}
//CONSTRUCTOR
public StudentLessonPK(String student_Id, String lesson_Id) {
super();
Student_Id = student_Id;
Lesson_Id = lesson_Id;
}
public StudentLessonPK(){
}
}
мой неверный запрос на получение в моем контроллере: я бы хотел получить что-то вроде / studentlesson / {studentid} / {lessonid}
@RequestMapping(value="/studentslesson/{StudentLessonPK}", method = RequestMethod.GET)
public StudentLesson StudentLessonById(@PathVariable StudentLessonPK id) {
return StudentLessonService.getStudentLesson(id);
}
мой класс обслуживания StudentLesson:
public StudentLesson getStudentLesson(StudentLessonPK id) {
Optional<StudentLesson> optionalStudentLesson = studentLessonRepository.findById(id);
if(optionalStudentLesson.isPresent()) {
return optionalStudentLesson.get();
}
return null;
}
Мой репозиторий:
public interface StudentLessonRepository extends CrudRepository<StudentLesson, StudentLessonPK> {
}