D Jain

Greenhorn
+ Follow
since Apr 13, 2011
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by D Jain

Hi

You may not be specifying the 'Id' with Id annotation, you need to specify @Id annotation above of ids getter like

@Id
@Column(name = "ID",nullable=true)
public long getId() {
return id;
}