0

休止状態の db システムの問題を修正しようとしていますが、どこが間違っているのかわかりません。

頂点 (頂点) とタグの 2 つのエンティティがあります。1 つの頂点には多くのタグが必要です。セット内のタグを使用して頂点を追加すると、頂点は DB に保存され、タグも保存されますが、頂点の列 FK は null として記録されます。これは、必要なときにタグのセットを取得できないことを意味します。助けてくれてありがとう!

その下にコードがあります:

import java.util.Set;
public class Vertice {

private long id;
private Set<Tag> tags;
private String amostra = new String();
private String chave = new String();

public Vertice() {
}

public long getId() {
    return id;
}
public void setId(long id) {
    this.id = id;
}
public Set<Tag> getTags() {
    return tags;
}
public void setTags(Set<Tag> tags) {
    this.tags = tags;
}
public String getAmostra() {
    return amostra;
}
public void setAmostra(String amostra) {
    this.amostra = amostra;
}
public String getChave() {
    return chave;
}
public void setChave(String chave) {
    this.chave = this.geraChave(chave);
}

private String geraChave(String chave){
    String _chave = new String();
    _chave = chave;
    try{
        if(this.getTags()!=null){
            for(Tag t: this.getTags()){
                _chave = _chave + t.getTexto();
            }
        }
    }
    catch(Exception e){
        e.printStackTrace();
    }
    return _chave;
}

}

クラスタグ:

public class Tag {
    private long id;
    private int linha;
    private int coluna;
    private String texto = new String();

private Vertice vertice;

public Vertice getVertice() {
    return vertice;
}
public void setVertice(Vertice vertice) {
    this.vertice = vertice;
}
public int getLinha() {
    return linha;
}
public int getColuna() {
    return coluna;
}
public void setColuna(int coluna) {
    this.coluna = coluna;
}
public void setLinha(int linha) {
    this.linha = linha;
}
public String getTexto() {
    return texto;
}
public void setTexto(String texto) {
    this.texto = texto;
}
public long getId() {
    return id;
}
public void setId(long id) {
    this.id = id;
}

}

VerticeDAO クラスのコード:

public boolean salvaAtualiza(Vertice VerticeArg) throws ViolacaoChaveUnicaException{

boolean ret = false;

try{
     if(VerticeArg.equals(null)){
        throw new Exception("O objeto <Vertice> foi informado vazio.");
     }
     else{
        sess.beginTransaction();
        sess.saveOrUpdate(VerticeArg);
        ret = true;
     }
    }
    catch(ConstraintViolationException e){
        throw new ViolacaoChaveUnicaException(
           "Houve uma violação de chave na tentativa " + 
              "de gravar os dados no BD");
    }
    catch(Exception e){
        e.printStackTrace();
    }
    return ret;
}

頂点エンティティの XML (Vertice.hbm.xml):

<hibernate-mapping>
<class name="xx.xxx.xxx.Vertice" table="pcommjava_vertice">
    <id name="id" column="vertice_id" type="long">
        <generator class="native" />
    </id>
    <property name="amostra">
        <column name="vertice_amostra" not-null="true" length="1920"/>
    </property>
    <property name="chave">
        <column name="vertice_chave" not-null="true" length="50" unique="true" unique-key="vertice_chave"/>
    </property>
    </class>

タグ XML マッピング (Tag.hbm.xml):

<hibernate-mapping>
<class name="xx.xxx.xxx.Tag" table="pcommjava_tag">
    <id name="id" column="tag_id" type="long">
        <generator class="native" />
    </id>
    <property name="linha">
        <column name="tag_linha" not-null="true" />
    </property>
    <property name="coluna">
        <column name="tag_coluna" not-null="true" />
    </property>
    <property name="texto">
        <column name="tag_texto" not-null="true" />
    </property>

    <many-to-one name="vertice" cascade="all" not-null="true" column="tag_vertice" class="xx.xxx.xxx.Vertice" />

</class>

最後に、hibernate.cfg.xml:

 <hibernate-configuration>
 <session-factory>
  <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
  <property name="hibernate.connection.password">SOMEPASSWORD</property>
  <property name="hibernate.connection.url">jdbc:mysql://00.00.000.000:3306/DB2</property>
  <property name="hibernate.connection.username">developer</property>
  <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
  <property name="hibernate.current_session_context_class">thread</property>
  <property name="hibernate.show_sql">true</property>
  <property name="hibernate.format_sql">true</property>
  <!-- Automatic schema creation (begin) === -->
  <property name="hibernate.hbm2ddl.auto">create</property>
  <!-- Simple memory-only cache -->
  <property name="hibernate.cache.provider_class">org.hibernate.cache.HashtableCacheProvider</property>

  <mapping class="xx.xx.xxx.Vertice"
   package="xx.xx.xxx.Vertice" resource="xx/xxx/xxx/Vertice.hbm.xml"/>
  <mapping class="xx.xx.xxx.Tag"
   package="xx.xx.xxx.Tag" resource="xx/xx/xxx/Tag.hbm.xml"/>

 </session-factory>

</hibernate-configuration>
4

1 に答える 1

1

問題は、 vertex.hbm.xmlset<Tag>で定義していないことです。私の理解によると、SetをVertice.javaに入れると、1対多または多対多の関係になります。これに加えて、 Tag.javaに頂点参照を置くと双方向の関係になります。詳細については、こちらをご覧ください。

http://docs.jboss.org/hibernate/orm/3.3/reference/en/html/collections.html

于 2012-10-04T15:30:28.537 に答える