Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.