Can't get running JPA2 with Hibernate and Maven
- by erlord
Have been trying the whole day long and googled the ** out of the web ... in vain. You are my last hope:
Here's my code:
The Entity:
package sas.test.model;
import javax.persistence.Entity;
import javax.persistence.Id;
@Entity
public class Employee {
@Id private int id;
private String name;
private long salary;
public…