xbatis 动态值
动态值 目前 主要用于 实体类 @TableField 注解 和 @Condition 注解中 ;用于在字段为null的一个默认值的动态设置;例如当前时间等等
框架自带动态默认值有哪些?
类型 | 说明 |
---|---|
{BLANK} | 空字符串 |
{NOW} | 当前时间,可应用在 LocalDateTime,LocalDate,Date,Long,Integer,String 字段上 |
{TODAY} | 当前时间段,表示一个区间,可应用在 LocalDate,String,LocalDate[],LocalDateTime[],Long[] 字段上 |
如何自定义自己的动态值
在项目启动执行,clazz 是 类的class,type是字段的类型
@Configuration
public class MyXbatisConfig{
@PostConstruct
void init(){
XbatisConfig.setDynamicValue("{KEY}", (clazz,type) -> {
if (type == LocalDateTime.class) {
return LocalDateTime.now();
} else if (type == LocalDate.class) {
return LocalDate.now();
} else if (type == Date.class) {
return new Date();
} else if (type == Long.class) {
return System.currentTimeMillis();
} else if (type == Integer.class) {
return (int) (System.currentTimeMillis() / 1000);
}
throw new RuntimeException("Inconsistent types");
});
}
}
如何主动根据key获取动态值
java
//前2个参数,看自己有没有用到,没有的话可以传 null
XbatisConfig.getDynamicValue(clazz, LocalDate[].class, "KEY");