MySQL视图中的LONGTEXT字段的JPA本机查询导致错误

时间:2021-06-21 07:52:52

I have the following JPA SqlResultSetMapping:

我有以下JPA SqlResultSetMapping:

 @SqlResultSetMappings({               
    @SqlResultSetMapping(name="GroupParticipantDTO", 
            columns={ 
                @ColumnResult(name="gpId"),
                @ColumnResult(name="gpRole"),
 //             @ColumnResult(name="gpRemarks")
            }  
    )

Which is used like this:

使用方式如下:

    StringBuilder sbQuery = new StringBuilder("Select  ");
    sbQuery.append(" gpId, ");
    sbQuery.append(" gpRole, "); 
 // sbQuery.append(" gpRemarks ");

    sbQuery.append(" FROM v_group_participants_with_details ");

    Query query = em.createNativeQuery(sbQuery.toString(), "GroupParticipantDTO");

The view is like this:

视图是这样的:

DROP VIEW IF EXISTS `v_group_participants_with_details`;
CREATE VIEW `v_group_participants_with_details`
AS
SELECT
   gp.id AS gpId,
   gp.role AS gpRole,
   gp.remarks AS gpRemarks
FROM GroupParticipation gp
;

The GroupParticipation table has the remarks column defined as LONGTEXT (I'm using Mysql 5.x)

GroupParticipation表的备注列定义为LONGTEXT(我使用的是Mysql 5.x)

Now for the problem: When the remarks field is commented out from the query everything works perfectly, but if I try to include the remarks field in the query, I get the following error:

现在出现问题:当从查询中注释掉备注字段时,一切都运行正常,但如果我尝试在查询中包含备注字段,则会出现以下错误:

 javax.persistence.PersistenceException: org.hibernate.MappingException: 
 No Dialect mapping for JDBC type: -1   
 at org.hibernate.ejb.AbstractEntityManagerImpl.throwPersistenceException
 (AbstractEntityManagerImpl.java:614)   
 at org.hibernate.ejb.QueryImpl.getResultList(QueryImpl.java:76)

What gives? How can I get a LONGTEXT column from a native query?

是什么赋予了?如何从本机查询中获取LONGTEXT列?

1 个解决方案

#1


This problem is reported in HHH-1483 and HHH-3892. In short, Hibernate does not know, how to map a LONGVARCHAR column returned by a native query.

在HHH-1483和HHH-3892中报道了该问题。简而言之,Hibernate不知道如何映射本机查询返回的LONGVARCHAR列。

This problem is fixed in Hibernate 3.5.0+. For previous versions, a workaround would be to extend the MysqlDialect to register the correct Hibernate Type for a LONGVARCHAR:

在Hibernate 3.5.0+中修复了此问题。对于以前的版本,解决方法是扩展MysqlDialect以为LONGVARCHAR注册正确的Hibernate类型:

import java.sql.Types;

import org.hibernate.Hibernate;

public class MyMySQL5Dialect extends org.hibernate.dialect.MySQL5Dialect {
    public MyMySQL5Dialect() {
        super();
        // register additional hibernate types for default use in scalar sqlquery type auto detection
        registerHibernateType(Types.LONGVARCHAR, Hibernate.TEXT.getName());
    }
}

#1


This problem is reported in HHH-1483 and HHH-3892. In short, Hibernate does not know, how to map a LONGVARCHAR column returned by a native query.

在HHH-1483和HHH-3892中报道了该问题。简而言之,Hibernate不知道如何映射本机查询返回的LONGVARCHAR列。

This problem is fixed in Hibernate 3.5.0+. For previous versions, a workaround would be to extend the MysqlDialect to register the correct Hibernate Type for a LONGVARCHAR:

在Hibernate 3.5.0+中修复了此问题。对于以前的版本,解决方法是扩展MysqlDialect以为LONGVARCHAR注册正确的Hibernate类型:

import java.sql.Types;

import org.hibernate.Hibernate;

public class MyMySQL5Dialect extends org.hibernate.dialect.MySQL5Dialect {
    public MyMySQL5Dialect() {
        super();
        // register additional hibernate types for default use in scalar sqlquery type auto detection
        registerHibernateType(Types.LONGVARCHAR, Hibernate.TEXT.getName());
    }
}