I have this code:
public class Item {
@Column(name = "serialNo", length = 12)
public String getSerialNo() {
return this.serialNo;
}
public void setSerialNo(String serialNo) {
this.serialNo = serialNo;
}
}
However, the database schema defines the column to be lenght 13. When the item is retrieved via:
List<Item> items = getEntityManager().createNamedQuery(SQL).getResultList();
The data that has serialNo
characters equal to 13
(since db table schema allows 13) are still being displayed as 13, not truncated. What is the use of the @Column
length
then?
The
javax.persistence.Column
'slength
attribute is used to define the column length ofString
fields (it is ignored for other types) and is only used when the persistence framework will generate the database schema (severalCREATE TABLE
s) from the entities, such as this option (for Hibernate onhibernate.cfg.xml
):In your example, the column
serialNo
would be created as aVARCHAR(12)
.For all other purposes (inserting or retrieving data), it is ignored.
Also, it is useful if you want to "document" metadata information of your database in your classes. This way, yourself can validate the to-be-saved value before trying to insert and avoid any "value too long" or "data truncation"-like exceptions.