Oracle
 sql >> Base de Dados >  >> RDS >> Oracle

Como mapear uma string para a sequência de banco de dados no Hibernate


Implemente uma classe IdentifierGenerator personalizada; de uma postagem do 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;
    }
}

Anote a entidade PK assim:
@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;
}

Devido a um bug no Eclipse, pode ser gerado um erro que o gerador (seq_id ) não está definido na unidade de persistência. Defina isso como um aviso da seguinte maneira:
  1. Selecione Janela » Preferências
  2. Expandir Persistência Java » JPA » Erros/avisos
  3. Clique em Consultas e geradores
  4. O conjunto Gerador não está definido na unidade de persistência para:Warning
  5. Clique em OK para aplicar as alterações e fechar a caixa de diálogo