Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5975179
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T21:02:48+00:00 2026-05-22T21:02:48+00:00

We have been using the GenericEnumUserType for our extensible enumerations and our classes fail

  • 0

We have been using the GenericEnumUserType for our extensible enumerations and our classes fail to load in JBoss 6, on a Hibernate 3.6+ container.

The following error is thrown

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

on the following code

type = (NullableType)TypeFactory.basic(identifierType.getName());
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T21:02:49+00:00Added an answer on May 22, 2026 at 9:02 pm

    Unfortunately @Enumerated does not work if you need to serialize based on something other than the Enum’s ordinal or name. I’ve managed to find a solution (modified slightly from here).

    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;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been using this piece of script to load external .js files to
We have been using CruiseControl for quite a while with NUnit and NAnt. For
I have been using PHP and JavaScript for building my dad's website. He wants
I have been using Eclipse as an IDE for a short amount of time
I have been using Castle MonoRail for the last two years, but in a
We have been using Scrum for around 9 months and it has largely been
I have been using C# for a while now, and going back to C++
I have been using ASP.NET for years, but I can never remember when using
I have been using Ruby for a while now and I find, for bigger
I have been using IoC for a little while now and I am curious

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.