We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bd453b commit fd37487Copy full SHA for fd37487
cloudbank-v2/spring-apps/customer/src/main/java/com/example/customer/model/Customers.java
@@ -6,8 +6,6 @@
6
import javax.persistence.Entity;
7
import javax.persistence.Id;
8
import javax.persistence.Table;
9
-import javax.persistence.GeneratedValue;
10
-import javax.persistence.GenerationType;
11
import javax.persistence.Column;
12
import lombok.Data;
13
import lombok.NoArgsConstructor;
@@ -23,7 +21,6 @@
23
21
public class Customers {
24
22
25
@Id
26
- @GeneratedValue(strategy = GenerationType.IDENTITY)
27
@Column(name = "CUSTOMER_ID")
28
private String customerId;
29
0 commit comments