博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
@Column标记持久化详细说明
阅读量:5076 次
发布时间:2019-06-12

本文共 2661 字,大约阅读时间需要 8 分钟。

@Column标记表示所持久化属性所映射表中的字段,该注释的属性定义如下:

@Target({METHOD, FIELD}) @Retention(RUNTIME)public @interface Column {String name() default "";boolean unique() default false;boolean nullable() default true;boolean insertable() default true;boolean updatable() default true;String columnDefinition() default "";String table() default "";int length() default 255;int precision() default 0;int scale() default 0;}

在使用此@Column标记时,需要注意以下几个问

|此标记可以标注在getter方法或属性前,例如以下的两种标注方法都是正确的:

标注在属性前:

@Entity@Table(name = "contact")public class ContactEO{@Column(name=" contact_name ")private String name;}

标注在getter方法前:

@Entity@Table(name = "contact")public class ContactEO{@Column(name=" contact_name ")public String getName() {         return name;}}

提示:JPA规范中并没有明确指定那种标注方法,只要两种标注方式任选其一都可以。这根据个人的喜好来选择,笔者习惯使用第二种方法。

l         unique属性表示该字段是否为唯一标识,默认为false。如果表中有一个字段需要唯一标识,则既可以使用该标记,也可以使用@Table标记中的@UniqueConstraint

l         nullable属性表示该字段是否可以为null值,默认为true

l         insertable属性表示在使用“INSERT”脚本插入数据时,是否需要插入该字段的值。

l         updatable属性表示在使用“UPDATE”脚本插入数据时,是否需要更新该字段的值。insertableupdatable属性一般多用于只读的属性,例如主键和外键等。这些字段的值通常是自动生成的。

l         columnDefinition属性表示创建表时,该字段创建的SQL语句,一般用于通过Entity生成表定义时使用。

l         table属性表示当映射多个表时,指定表的表中的字段。默认值为主表的表名。有关多个表的映射将在本章的5.6小节中详细讲述。

l         length属性表示字段的长度,当字段的类型为varchar时,该属性才有效,默认为255个字符。

l         precision属性和scale属性表示精度,当字段类型为double时,precision表示数值的总长度,scale表示小数点所占的位数。

下面举几个小例子:

示例一:指定字段“contact_name”的长度是“512”,并且值不能为null

private String name; @Column(name="contact_name",nullable=false,length=512)public String getName() {         return name;}

创建的SQL语句如下所示。

CREATE TABLE contact (id integer not null,contact_name varchar (512) not null,primary key (id))

示例二:指定字段“monthly_income”月收入的类型为double型,精度为12位,小数点位数为2位。

      

private BigDecimal monthlyIncome;          @Column(name="monthly_income",precision=12, scale=2)         public BigDecimal getMonthlyIncome() {                   return monthlyIncome;         }

创建的SQL语句如下所示。

 

CREATE TABLE contact (id integer not null,monthly_income double(12,2),primary key (id))

 

示例三:自定义生成CLOB类型字段的SQL语句。

private String  name; @Column(name=" contact_name ",columnDefinition="clob not null")public String getName() {                  return name;}

生成表的定义SQL语句如下所示。

CREATE TABLE contact (id integer not null,contact_name clob (200) not null,primary key (id))

其中,加粗的部分为columnDefinition属性设置的值。若不指定该属性,通常使用默认的类型建表,若此时需要自定义建表的类型时,可在该属性中设置。

提示:通过Entity定义生成表,还是通过表配置Entity,这两种ORM的策略。有关两种方法的映射策略好坏,将在本书的章节中“JPA工具的使用”一章进行详细的比较。

示例四:字段值为只读的,不允许插入和修改。通常用于主键和外键。

private Integer id;                 @Column(name="id",insertable=false,updatable=false)         public Integer getId() {                   return id;         }

 

 

 

转载于:https://www.cnblogs.com/shudonghe/archive/2013/01/18/2866401.html

你可能感兴趣的文章
从一个标准 url 里取出文件的扩展名
查看>>
map基本用法
查看>>
poj-1163 动态规划
查看>>
Golang之interface(多态,类型断言)
查看>>
Redis快速入门
查看>>
BootStrap---2.表格和按钮
查看>>
Linear Algebra lecture 2 note
查看>>
CRC计算模型
查看>>
Ajax之404,200等查询
查看>>
Aizu - 1378 Secret of Chocolate Poles (DP)
查看>>
csv HTTP简单表服务器
查看>>
OO设计的接口分隔原则
查看>>
数据库连接字符串大全 (转载)
查看>>
java类加载和对象初始化
查看>>
对于负载均衡的理解
查看>>
django简介
查看>>
window.event在IE和Firefox的异同
查看>>
常见的js算法面试题收集,es6实现
查看>>
IO流写出到本地 D盘demoIO.txt 文本中
查看>>
Windows10 下Apache服务器搭建
查看>>