I have a Class Student and Department as follows:
public class Department{
@Id@GeneratedValue
@Column
private Long id
@Column
private String department_Title;
@Column
private department_Code;
//getters and setters
}
public class Student{
@Id@GeneratedValue
@Column
private Long id
@Column
private String name;
@column
private String address
@ManyToOne
private Department department
//getters and setters
}
Suppose I want to get just student name, student id and department title of a student whose id is 1201. Now my question is how can I get the specified columns from two tables Student and Department using hibernate Projection?
if is not possible with Projection what is the other way with HQL?
Is there any way to get the resulting list as List with only specified fields fetched?
Thanking you all