Vidya
Vidya

Reputation: 145

How to generate a hibernate ID with auto generate with a starting value

Hi I have written code like this

@Id
@Column(nullable=false)
@GeneratedValue(strategy=GenerationType.AUTO)
public int getUserID() {
    return UserID; 
}

But I manually setting it from DAO like "e.setUserID(01);" to insert.Otherwise row not inserting Is there any process to get value to id and retrieve what value generated automatically. Im thinking i will get some help

Upvotes: 6

Views: 29667

Answers (2)

Raul Rene
Raul Rene

Reputation: 10290

Use the IDENTITY generation type instead of auto. Use a Long for id. I also recommend changing the name from UserID to userId. Do not forget the @Entity for the class name.

@Entity
public class MyClass{

private Long userId;

    @Id 
    @GeneratedValue(strategy=GenerationType.IDENTITY) 
    @Column
    public Long getUserID(){
        return userId;
    }

    //.. rest of class

}

Be very careful with the naming conventions and make sure your field names and types match the field names and types from the database.

Upvotes: 5

Shehzad
Shehzad

Reputation: 2940

Use

@GenericGenerator(name="generator", strategy="increment")
@GeneratedValue(generator="generator")

Upvotes: 4

Related Questions