2

I tried @Id to particular field but in database it is not affecting.

@Id
private String id;
2
  • did you add @Entity at the class level too? Commented Sep 29, 2017 at 12:10
  • yes I have added a @Entity at the class level Commented Sep 29, 2017 at 12:15

2 Answers 2

1

before trying make sure there is no any other primary key to your d_table

try this one

@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name = "id", updatable = false, nullable = false)
private Long id;
Sign up to request clarification or add additional context in comments.

Comments

0

Check this out.

@Entity
@Table(name = "user_tbl")
public class User {

   public User() {}

   @Id
   @GeneratedValue(strategy = GenerationType.IDENTITY)
   @Column(name = "id", updatable = false, nullable = false)
   private Long id;

   @Column(name = "user_email")
   private String email;
}

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.