import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType;
import org.springframework.data.annotation.Id;
@Entity public class Curso {
@Id @GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
private String nome;
private String categoria;