I have this insert record form using struts2. I uses OpenJPA to insert record to my Derby database.
- Insert a unique record to the forms then press the register botton. Insert Success.
- Insert another unique record to the form then press the register botton. error happesn.
please note that the value 565656 is the key of the record on step one. Any Idea what is wrong? I have this test code using main() and I could not encounter this error.
Attempt to persist detached object "lotmovement.business.entity.UserProfile-565656". If this is a new instance, make sure any version and/or auto-generated primary key fields are null/default when persisting.
Classes involved.
EntityStart
package lotmovement.business.crud;
import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.EntityTransaction;
import javax.persistence.Persistence;
import lotmovement.business.entity.UserProfile;
import org.apache.openjpa.persistence.OpenJPAEntityManager;
import org.apache.openjpa.persistence.OpenJPAPersistence;
public class EntityStart {
EntityManagerFactory factory;
EntityManager em;
public void StartDbaseConnection()
{
factory = Persistence.createEntityManagerFactory("LotMovementPU");
em = factory.createEntityManager();
}
public void StartPopulateTransaction(Object entity){
EntityTransaction userTransaction = em.getTransaction();
userTransaction.begin();
em.persist(entity);
userTransaction.commit();
em.close();
}
public void CloseDbaseConnection(){
factory.close();
}
}
Register Action.
*/
package lotmovement.action;
import com.opensymphony.xwork2.ActionSupport;
import lotmovement.business.crud.InsertUserProfile;
/**
*
* @author god-gavedmework
*/
public class RegisterAction extends ActionSupport {
private String userId;
private String password;
private String firstName;
private String lastName;
private int securityLevel;
public InsertUserProfile insertUserProfile;
@Override
public void validate() {
// if (reup1.checkrecordexist()) {
// addActionError("record already exist.");
// }
}
@Override
public String execute() {
// iup = (InsertUserProfile) ctx.getBean("insertUserProfile");
insertUserProfile.Insert(getUserId(),getPassword(),getFirstName(),
getLastName(),getSecurityLevel());
return SUCCESS;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public int getSecurityLevel() {
return securityLevel;
}
public void setSecurityLevel(int securityLevel) {
this.securityLevel = securityLevel;
}
private String retypepassword;
public String getRetypepassword() {
return retypepassword;
}
public void setRetypepassword(String retypepassword) {
this.retypepassword = retypepassword;
}
/* Object setter.
**/
public InsertUserProfile getInsertUserProfile() {
return insertUserProfile;
}
public void setInsertUserProfile(InsertUserProfile insertUserProfile) {
this.insertUserProfile = insertUserProfile;
}
}
Entity:USerProfile
package lotmovement.business.entity;
import java.io.Serializable;
import javax.persistence.*;
/**
*
* @author god-gavedmework
*/
@Entity(name = "USERPROFILE") //Name of the entity
public class UserProfile implements Serializable{
@Id //signifies the primary key
@Column(name = "USER_ID", nullable = false,length = 20)
private String userId;
@Column(name = "PASSWORD", nullable = false,length = 20)
private String password;
@Column(name = "FIRST_NAME", nullable = false,length = 20)
private String firstName;
@Column(name = "LAST_NAME", nullable = false,length = 50)
private String lastName;
@Column(name = "SECURITY_LEVEL", nullable = false,length = 4)
private int securityLevel;
@Version
@Column(name = "LAST_UPDATED_TIME")
private java.sql.Timestamp updatedTime;
My Tester
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package tester;
import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.EntityTransaction;
import javax.persistence.Persistence;
import lotmovement.business.entity.UserProfile;
import lotmovement.action.LoginAction;
import lotmovement.action.RegisterAction;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
*
* @author god-gavedmework
*/
public class insert {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
EntityManagerFactory entityManagerFactory =
Persistence.createEntityManagerFactory("LotMovementPU");
EntityManager em = entityManagerFactory.createEntityManager();
EntityTransaction userTransaction = em.getTransaction();
userTransaction.begin();
UserProfile up = new UserProfile();
RegisterAction ra = new RegisterAction();
up.setUserId("44");
up.setFirstName("2");
up.setLastName("2");
up.setPassword("2");
up.setSecurityLevel(1);
em.persist(up);
userTransaction.commit();
em.close();
entityManagerFactory.close();
System.out.println("write successful");
}
}