-1

リレーションの片側にデータを挿入したい

これは私の親エンティティです

public class Parent implements Serializable{   

@GeneratedValue(strategy=GenerationType.IDENTITY)   

private int id;   

private String pfirstName;   

private String plastName;   

private int parentAge;     

public int getId() {   
return id;   
}   
public void setId(int id) {   
this.id = id;   
}   
public String getPfirstName() {   
return pfirstName;   
}   
public void setPfirstName(String pfirstName) {   
this.pfirstName = pfirstName;   
}   
public String getPlastName() {   
return plastName;   
}   
public void setPlastName(String plastName) {   
this.plastName = plastName;   
}   
public int getParentAge() {   
return parentAge;   
}   
public void setParentAge(int parentAge) {   
this.parentAge= parentAge;   
}   
}   

これは私の子エンティティです

プレーンコピーをclipboardprintに表示しますか?注:コードブロックのテキストコンテンツは自動的にワードラップされます

public class Child implements Serializable{   
/**  
 *   
 */  
private static final long serialVersionUID = 1L;   
@Id  
@GeneratedValue(strategy=GenerationType.IDENTITY)   
private int id;   

private String cfirstName;   

private String plastName;   

private int childAge;   

@OneToOne(cascade=CascadeType.ALL,   
fetch=FetchType.EAGER)   
@JoinColumn(name="pId")   
private Parent parent;   

public int getId() {   
return id;   
}   
public void setId(int id) {   
this.id = id;   
}   
public String getCfirstName() {   
return cfirstName;   
}   
public void setCfirstName(String cfirstName) {   
this.cfirstName = cfirstName;   
}   
public String getClastName() {   
return clastName;   
}   
public void setClastName(String clastName) {   
this.clastName = clastName;   
}    
public int getChildAge() {   
return childAge;   
}   
public void setChildAge(int childAge) {   
this.childAge = childAge;   
}   
public Parent getParent() {
return parent;
}
 public void setParent(Parent parent) {
this.parent = parent;
}


}  

リモートインターフェースの実装

 @`enter code here`Stateless  
 @Remote(InformationRemote.class)   
 public class Information implements InformationRemote {   

/**  
 * Default constructor.   
 */  
public Information() {   
    // TODO Auto-generated constructor s   
}   
@PersistenceContext(unitName="JPADB")   
private EntityManager em;     

public String save(Child child) throws Exception   
{   
    System.out.println("First it si coming");   
    em.persist(child);   
    return("sucess");   
}   
}  

これはMyInsertionClassSaveメソッドです

public void save1()   
{   
Parent p =new Parent();   
Child c=new Child();   
InformationRemote bean=doLookup();   
System.out.println("new method coming");   
p.setParentAge(1);   
p.setPfirstName("GOL");   
p.setPlastName("JON");   
c.setCfirstName("jj");   
c.setClastName("gg");   
c.setChildAge(1);   
c.setParent(p);   
try  
 {   
 String res=bean.save(c);   
 }   
    catch(Exception e)   
    {   
        System.out.println("this is a exception"+e);   
    }   
 }  

Savematheodに電話すると

結果を示す私のデータベース

このIDの親テーブルは主キーです

id pfirstName parentAge plastName

1 GOL 1 JON

この子テーブルの子テーブルIDは主キーであり、pidは親テーブルIDを参照する外部キーです。

id cfirstName childtAge clastName pid

1 jj 1 gg 1

今、私は以下のように子テーブルのみを挿入したい

id cfirstName childtAge clastName pid

1 jj 1 gg 1

2 kk 2 oo 1

どうしてそれは可能ですか?

4

1 に答える 1

1

私が正しく理解していれば、既存の親に子を追加したいと思います。とても簡単です。親はすでに存在するため、その親への参照を取得してから、親を新しい子に割り当てます。

public void createChild(String firstName, String lastName, int age, int parentId) {
    Parent parent = entityManager.getReference(Parent.class, parentId);
    Child child = new Child();
    child.setFirstName(firstName);
    child.setLastName(lastName);
    child.setAge(age);
    child.setParent(parent);
    entityManager.persist(child);
}
于 2013-03-25T12:28:14.103 に答える