Text Field using Hibernate Annotation

HibernateAnnotationsBlob

Hibernate Problem Overview


I am having trouble setting the type of a String, it goes like

public void setTextDesc(String textDesc) {
	this.textDesc = textDesc;
}

@Column(name="DESC")
@Lob
public String getTextDesc() {
	return textDesc;
}

and it didn't work, I checked the mysql schema and it remains varchar(255), I also tried,

@Column(name="DESC", length="9000")

or

@Column(name="DESC")
@Type(type="text")

I am trying to make the type to be TEXT, any idea would be well appreciated!

Hibernate Solutions


Solution 1 - Hibernate

You said "I checked the mysql schema and it remains varchar(255)" - did you expect Hibernate to automatically alter your database? It won't. Even if you have hibernate.hbm2ddl.auto set, I don't believe Hibernate would alter the existing column definition.

If you were to generate new database creation script, @Lob should generate "TEXT" type column if you don't specify length explicitly (or if you do and it's less that 65536). You can always force that by explicitly declaring type in @Column annotation, though keep in mind that's not portable between databases:

@Column(name="DESC", columnDefinition="TEXT")

Solution 2 - Hibernate

There is a way to set the default mapping for "String" type to be set to "text" type in the database.

Save the following file in the package where you have your entities. Please change the package name as well.

This will set all "String" type fields to "text" type in the db for the package specified.

package-info.java

@TypeDefs({
	  @TypeDef(name="string",defaultForType=java.lang.String.class,typeClass=org.hibernate.type.TextType.class)
})

package com.package.app;

import org.hibernate.annotations.TypeDef;
import org.hibernate.annotations.TypeDefs;

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionbernardwView Question on Stackoverflow
Solution 1 - HibernateChssPly76View Answer on Stackoverflow
Solution 2 - Hibernatenissim_devView Answer on Stackoverflow