@Column

From NovaOrdis Knowledge Base
Revision as of 00:18, 4 December 2018 by Ovidiu (talk | contribs) (Created page with "=External= =Internal= * JPA Concepts =Overview= =Column Length= <syntaxhighlight lang='java'> @Entity public class SomeEntity { ... @Column(len...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

External

Internal

Overview

Column Length

@Entity
public class SomeEntity {
  ...
 @Column(length = 4096)
 private String aLongField;
 ...
}