Hello am back searching for help: when i INSERT datas into my H2 console databse, i get negative id Values and all my fields have the "NULL" value.
@Entity
@Table(name = "tcustomer")
public class Customer implements Serializable{
private static final long serialVersionUID = 1L;
@Id
@SequenceGenerator(name = "pk_sequence",sequenceName = "sequence_tcustomer", initialValue = 1000, allocationSize = 100)
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "pk_sequence")
private Long uidpk;
Help me please Thks
hibernate.jdbc.batch_size: 100, hibernate.order_inserts: true, hibernate.order_updates: true, hibernate.jdbc.batch_versioned_data: true, hibernate.id.new_generator_mappings: true' – solo Jan 15 '18 at 16:37