Issue Type: Bug Bug
Assignee: Unassigned
Created: 30/May/13 5:06 AM
Description:

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; }

}

This POJO takes initial value as 1001 in JPA but takes 1 as initial value in Hibernate

Project: Hibernate Commons Annotations
Labels: hibernate
Priority: Major Major
Reporter: Shoaib Chikate
Original Estimate: 16h
Remaining Estimate: 16h
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira