Note that there are some explanatory texts on larger screens.

plurals
  1. POinitialValue attribute of @TableGenerator shows issue in Hibernate but not in JPA
    primarykey
    data
    text
    <pre><code>package com.sb.firstjpaexample.pojo; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.TableGenerator; @Entity @Table(name = "EMPLOYEE") public class Employee { @Id @TableGenerator(name = "TABLE_GEN", table = "SEQUENCE_TABLE", pkColumnName = "SEQ_NAME", valueColumnName = "SEQ_COUNT", pkColumnValue = "EMP_SEQ", initialValue = 1001, allocationSize = 5) @GeneratedValue(strategy = GenerationType.TABLE, generator = "TABLE_GEN") private int employeeId; @Column private String employeeName; @Column private String designation; @Column private double salary; public int getEmployeeId() { return employeeId; } public void setEmployeeId(int employeeId) { this.employeeId = employeeId; } public String getEmployeeName() { return employeeName; } public void setEmployeeName(String employeeName) { this.employeeName = employeeName; } public String getDesignation() { return designation; } public void setDesignation(String designation) { this.designation = designation; } public double getSalary() { return salary; } public void setSalary(double salary) { this.salary = salary; } </code></pre> <p>}</p> <p>"This POJO takes initial value as 1001 in JPA but takes 1 as initial value in Hibernate" One more doubt how to set increment step here using annotations In JPA it shows no problem but problem in increment when i use increment strategies</p> <p>Please help me and thanks in advance</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload