gpt4 book ai didi

java - Hibernate、Postgres 和数组类型

转载 作者:搜寻专家 更新时间:2023-10-30 19:52:19 25 4
gpt4 key购买 nike

我在使用 array type 时遇到了一个特定问题 在 postgresql 9.3 中映射到 hibernate 4.1.0。这种类型使我能够拥有非常强大的数据模型,而无需构建大量表和连接。

为了映射以这种特定类型存储的字段,我使用了 UserType

无论如何,它与纯 hibernate (hql) 配合使用效果很好,但我还需要将 sql native 查询 发送到我的数据库。当我这样做时,尽管尝试了很多次,但我还没有找到任何方法来做到这一点。

我尝试了很多基于此的语法

String[] values = {"value1", "value2"};
String queryString = "SELECT * FROM instances WHERE values && :values";
Query query = this.getSession().createSQLQuery(queryString).addEntity(Instance.class);
query.setParameterList("values", values);
query.list();

我得到了 运算符不存在:text[] && character varying

它应该在 jdbc 中给出以下语法:['value1', 'value2'] 并且它似乎给出 'value1'...

我尝试了很多语法与

  • Collection
  • 纯数组
  • [ :values ] 语法:我得到了“[”附近的语法错误

我需要发送 native 查询,因为我使用 Materialized View以获得性能提升。

我的 SQL 查询在 postgresql 控制台中运行。所以这是一个特定于 hibernate 的问题。

最佳答案

我尝试了几个基于 JDBC4 引入的数组类型的版本:How can I set a String[] parameter to a native query? .问题还在于 Hibernate(即使在最新版本 4.3.1.final 中)也无法使用此新功能并给我以下错误消息

Could not determine a type for class: org.postgresql.jdbc4.Jdbc4Array

所以我必须创建一个特定的用户类型(基于 stackoverflow 中的几篇文章和其他来源)

我的模型

@Type(type = "fr.mycompany.dao.hibernate.types.ArrayUserType")
private String[] values;

我的ArrayUserType

public class ArrayUserType implements UserType {

/** Constante contenant le type SQL "Array".
*/
protected static final int[] SQL_TYPES = { Types.ARRAY };

/**
* Return the SQL type codes for the columns mapped by this type. The
* codes are defined on <tt>java.sql.Types</tt>.
*
* @return int[] the typecodes
* @see java.sql.Types
*/
public final int[] sqlTypes() {
return SQL_TYPES;
}

/**
* The class returned by <tt>nullSafeGet()</tt>.
*
* @return Class
*/
public final Class returnedClass() {
return String[].class;
}

/**
* Retrieve an instance of the mapped class from a JDBC resultset. Implementors
* should handle possibility of null values.
*
* @param resultSet a JDBC result set.
* @param names the column names.
* @param session SQL en cours.
* @param owner the containing entity
* @return Object
* @throws org.hibernate.HibernateException exception levée par Hibernate
* lors de la récupération des données.
* @throws java.sql.SQLException exception SQL
* levées lors de la récupération des données.
*/
@Override
public final Object nullSafeGet(
final ResultSet resultSet,
final String[] names,
final SessionImplementor session,
final Object owner) throws HibernateException, SQLException {
if (resultSet.wasNull()) {
return null;
}

String[] array = (String[]) resultSet.getArray(names[0]).getArray();
return array;
}

/**
* Write an instance of the mapped class to a prepared statement. Implementors
* should handle possibility of null values. A multi-column type should be written
* to parameters starting from <tt>index</tt>.
*
* @param statement a JDBC prepared statement.
* @param value the object to write
* @param index statement parameter index
* @param session sql en cours
* @throws org.hibernate.HibernateException exception levée par Hibernate
* lors de la récupération des données.
* @throws java.sql.SQLException exception SQL
* levées lors de la récupération des données.
*/
@Override
public final void nullSafeSet(final PreparedStatement statement, final Object value,
final int index, final SessionImplementor session) throws HibernateException, SQLException {

if (value == null) {
statement.setNull(index, SQL_TYPES[0]);
} else {
String[] castObject = (String[]) value;
Array array = session.connection().createArrayOf("text", castObject);
statement.setArray(index, array);
}
}

@Override
public final Object deepCopy(final Object value) throws HibernateException {
return value;
}

@Override
public final boolean isMutable() {
return false;
}

@Override
public final Object assemble(final Serializable arg0, final Object arg1)
throws HibernateException {
// TODO Auto-generated method stub
return null;
}

@Override
public final Serializable disassemble(final Object arg0) throws HibernateException {
// TODO Auto-generated method stub
return null;
}

@Override
public final boolean equals(final Object x, final Object y) throws HibernateException {
if (x == y) {
return true;
} else if (x == null || y == null) {
return false;
} else {
return x.equals(y);
}
}

@Override
public final int hashCode(final Object x) throws HibernateException {
return x.hashCode();
}

@Override
public final Object replace(
final Object original,
final Object target,
final Object owner) throws HibernateException {
return original;
}

最后但也是最不重要的(这是我错过的):当我需要运行 SQL Native Query 时,我必须使用以下语法强制参数类型

String[] values = ...
Type arrayType = new CustomType(new ArrayUserType());
query.setParameter("value", values, arrayType);

关于java - Hibernate、Postgres 和数组类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21940642/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com