It's possible to use @TypeDefs annotation to define short type name for a UserType. But how to define it for entire application?

link|improve this question

61% accept rate
feedback

1 Answer

You can give a basic value type name (see http://docs.jboss.org/hibernate/core/3.6/reference/en-US/html_single/#mapping-types-basictypes) to your UserType class, making that class the substitute of the standard class.

For example:

<typedef name="string" 
      class="com.foo.hibernate.userType.NewStringUserType"></typedef>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.