当前位置: 首页 > 面试题库 >

休眠特定用户类型上的java.lang.verifyError

曹嘉许
2023-03-14
问题内容

我们一直在使用GenericEnumUserType进行可扩展的枚举,并且我们的类无法在Hibernate
3.6+容器上的JBoss 6中加载。

引发以下错误

#abc state=Create: java.lang.NoSuchMethodError: org.hibernate.type.Type
Factory.basic(Ljava/lang/String;)Lorg/hibernate/type/Type;

在以下代码上

type = (NullableType)TypeFactory.basic(identifierType.getName());

问题答案:

不幸的是,如果您需要基于Enum的序数或名称之外的其他内容进行序列化,则@Enumerated无效。我设法找到了一种解决方案(从此处进行了稍微修改)。

import java.io.Serializable;
import java.lang.reflect.Method;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Properties;
import org.hibernate.HibernateException;
import org.hibernate.type.AbstractSingleColumnStandardBasicType;
import org.hibernate.type.TypeResolver;
import org.hibernate.usertype.ParameterizedType;
import org.hibernate.usertype.UserType;

public class GenericEnumUserType implements UserType, ParameterizedType {

    private Class<? extends Enum> enumClass;
    private Class<?> identifierType;
    private Method identifierMethod;
    private Method valueOfMethod;
    private static final String defaultIdentifierMethodName = "name";
    private static final String defaultValueOfMethodName = "valueOf";
    private AbstractSingleColumnStandardBasicType type;
    private int[] sqlTypes;

    @Override
    public void setParameterValues( Properties parameters )
    {
        String enumClassName = parameters.getProperty("enumClass");
        try
        {
            enumClass = Class.forName( enumClassName ).asSubclass( Enum.class );
        }
        catch (ClassNotFoundException exception) {
            throw new HibernateException("Enum class not found", exception);
        }

        String identifierMethodName = parameters.getProperty( "identifierMethod", defaultIdentifierMethodName );

        try
        {
            identifierMethod = enumClass.getMethod( identifierMethodName,
                                                    new Class[0]);
            identifierType = identifierMethod.getReturnType();
        }
        catch (Exception exception)
        {
            throw new HibernateException("Failed to optain identifier method",
                    exception);
        }

        TypeResolver tr = new TypeResolver();
        type = (AbstractSingleColumnStandardBasicType)tr.basic( identifierType.getName() );
        if (type == null)
        {
            throw new HibernateException( "Unsupported identifier type " + identifierType.getName() );
        }
        sqlTypes = new int[] { type.sqlType() };

        String valueOfMethodName = parameters.getProperty( "valueOfMethod",
                                                           defaultValueOfMethodName);

        try
        {
            valueOfMethod = enumClass.getMethod( valueOfMethodName,
                                                 new Class[] { identifierType } );
        }
        catch ( Exception exception )
        {
            throw new HibernateException( "Failed to optain valueOf method",
                                          exception);
        }
    }

    @Override
    public Class returnedClass()
    {
        return enumClass;
    }

    @Override
    public Object nullSafeGet( ResultSet rs, String[] names, Object owner )
        throws HibernateException, SQLException
    {
        Object identifier = type.get( rs, names[0] );
        try
        {
            return valueOfMethod.invoke( enumClass, new Object[] { identifier } );
        }
        catch ( Exception exception )
        {
            throw new HibernateException( "Exception while invoking valueOfMethod of enumeration class: ",
                                          exception);
        }
    }

    public void nullSafeSet( PreparedStatement st, Object value, int index )
        throws HibernateException, SQLException
    {
        try
        {
            Object identifier = value != null ? identifierMethod.invoke( value,
                                                                         new Object[0] ) : null;
            st.setObject( index, identifier );
        }
        catch ( Exception exception )
        {
            throw new HibernateException( "Exception while invoking identifierMethod of enumeration class: ",
                                          exception );

        }
    }

    @Override
    public int[] sqlTypes()
    {
        return sqlTypes;
    }

    @Override
    public Object assemble( Serializable cached, Object owner )
        throws HibernateException
    {
        return cached;
    }

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

    @Override
    public Serializable disassemble( Object value )
        throws HibernateException
    {
        return (Serializable) value;
    }

    @Override
    public boolean equals( Object x, Object y )
        throws HibernateException
    {
        return x == y;
    }

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

    public boolean isMutable()
    {
        return false;
    }

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


 类似资料:
  • 问题内容: 我已经创建了一个UserType(请参见下文)来处理mySQL数据库中的一种情况,在该情况下我们将空日期保存为0000-00-00 00:00:00。 当我尝试使用dispDT的null持久化我的实体时(请参见下文),它将生成以下异常:“ javax.persistence.PersistenceException:org.hibernate.PropertyValueExceptio

  • 问题内容: 我知道休眠最近在3.6中重做了它的类型系统。我认为这现在允许您将Java类与类型(或UserType)相关联。例如,我使用joda- time并具有几个UserType,它们将LocalDate和LocalDateTime映射到适当的SQL类型。 当使用对象时,这很好用,但是如果我想传递一个joda类型作为HQL参数,hibernate会感到困惑,所以我必须记住每次打电话时都要提供Ty

  • 问题内容: 我正在使用Hibernate + JPA作为我的ORM解决方案。 我正在使用HSQL进行单元测试,并使用PostgreSQL作为真正的数据库。 我希望能够将Postgres的本机UUID类型与Hibernate一起使用,并在其String表示形式中将UUID与HSQL一起用于单元测试(因为HSQL没有UUID类型)。 我正在为Postgres和HSQL单元测试使用具有不同配置的持久性X

  • 问题内容: 我有一个客户端服务器应用程序,并且在我的服务器中,我正在使用hibernate模式进行数据库处理。现在,我的应用程序需要所有数据库表中的一个简单表,其中仅一个行包含一个字段(这是该行的键)。该表实际上仅包含一个全局编号(从1开始),我在用户每次执行某些操作时都会使用该编号,当他执行此操作时,我需要获取该值并在数据库中递增该值。(表应该只包含一行,并且始终只有一个值) 我正在使用以下代码

  • 问题内容: 在对象级别,实体类型和值类型之间有什么区别?我知道实体将具有ID,但值将没有,但为什么我们需要不同的方式来映射实体与值类型? 这样做是为了让hibernate状态可以对值类型应用任何优化? 问题答案: 实体已经定义了表的持久化位置。因此,当您在实体A中拥有B实体的列表时,则无需为B定义目标表:B已经定义了它。值类型没有任何关联的表,因此实体A 中的in 映射必须定义将使用哪个表来存储此

  • 问题内容: 我收到错误消息: org.hibernate.TypeMismatchException:为类BEntity提供了错误类型的ID。预期:类BEntity,得到类AEntity HQL查询: hibernate源代码 当我在SQL Explorer中运行代码时,只能在代码中运行它会导致问题… 问题答案: 看来这是hibernate3.2.6版中的一个缺陷,该缺陷仍未解决。碰到了这个JIR