今天我们来聊聊jpa @basic注解的使用。
1.介绍:
@basic 是实体类与数据库字段映射时最简单的类型。在该注解的介绍中:
the basic
annotation can be applied to a persistent
* property or instance variable of any of the following types: java
* primitive types, wrappers of the primitive types, string
,
* java.math.biginteger
,
* java.math.bigdecimal
,
* java.util.date
,
* java.util.calendar
,
* java.sql.date
,
* java.sql.time
,
* java.sql.timestamp
, byte[]
, byte[]
,
* char[]
, character[]
, enums, and any other type that
* implements java.io.serializable
我们可以看到,它可以用于持久类属性或实例变量(instance variable)上,类型包含java基本类型(byte,short,int,long,float,double,char,boolean),包装类,枚举类,以及实现了serializable接口的类型。
刚开始对实例变量有点不太理解,起始简单说:实例变量就是类中的一个属性,在创建对象的时候我们会去初始化它。与方法中局部变量区分。
引出问题1:难道@basic注解还可以用于非持久化类吗?
2.用的位置
@target({method, field})
可以用在类属性上以及getter方法上
3.用途
@basic注解有两个属性:
fetchtype fetch() default eager;
boolean optional() default true;
fetch用来指定属性的加载机制
有两个选项:eager(即时加载,默认值)和lazy(懒加载),即时加载意味着当实例化对象的时候必须加载该属性值,懒加载是指当实例化对象时不加载该属性,只有当调用该属性时才加载。
optional用来指定属性是否可空
有两个选项:true(可空,默认值)和false
如果你在实体类属性上不加@basic注解,它也会自动加上@basic,并使用默认值。