Oracle
 sql >> Database >  >> RDS >> Oracle

Come mappare una stringa su una sequenza DB in Hibernate

Implementare una classe IdentifierGenerator personalizzata; da un post del blog:

import java.io.Serializable;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

import org.hibernate.HibernateException;
import org.hibernate.engine.spi.SessionImplementor;
import org.hibernate.id.IdentifierGenerator;

public class StringKeyGenerator implements IdentifierGenerator {

    @Override
    public Serializable generate(SessionImplementor session, Object collection) throws HibernateException {
        Connection connection = session.connection();
        PreparedStatement ps = null;
        String result = "";

        try {
            // Oracle-specific code to query a sequence
            ps = connection.prepareStatement("SELECT TABLE_SEQ.nextval AS TABLE_PK FROM dual");
            ResultSet rs = ps.executeQuery();

            if (rs.next()) {
                int pk = rs.getInt("TABLE_PK");

                // Convert to a String
                result = Integer.toString(pk);
            }
        } catch (SQLException e) {
            throw new HibernateException("Unable to generate Primary Key");
        } finally {
            if (ps != null) {
                try {
                    ps.close();
                } catch (SQLException e) {
                    throw new HibernateException("Unable to close prepared statement.");
                }
            }
        }

        return result;
    }
}

Annota l'entità PK in questo modo:

@Id
@GenericGenerator(name="seq_id", strategy="my.package.StringKeyGenerator")
@GeneratedValue(generator="seq_id")
@Column(name = "TABLE_PK", unique = true, nullable = false, length = 20)
public String getId() {
    return this.id;
}

A causa di un bug in Eclipse, potrebbe essere generato un errore che il generatore (seq_id ) non è definito nell'unità di persistenza. Impostalo su un avviso come segue:

  1. Seleziona Finestra » Preferenze
  2. Espandi Java Persistence » JPA » Errori/Avvisi
  3. Fai clic su Query e generatori
  4. Imposta Il generatore non è definito nell'unità di persistenza a:Warning
  5. Fai clic su OK per applicare le modifiche e chiudere la finestra di dialogo