mybatisplus 时间格式
时间: 2023-09-02 18:08:50 浏览: 135
Mybatis时序图
MybatisPlus支持使用Java8的LocalDateTime和LocalDate来映射数据库中的日期时间类型字段,也支持使用注解进行格式化。
1. 使用Java8日期时间类型
在实体类中,使用Java8的LocalDateTime和LocalDate类型来映射数据库中的日期时间类型字段,例如:
```java
public class User {
private Long id;
private String name;
private LocalDateTime createTime;
private LocalDate birthday;
// ...
}
```
对应的数据库表中,createTime字段类型为datetime,birthday字段类型为date。
2. 使用注解进行格式化
在实体类中,使用注解来指定日期时间类型字段的格式化方式,例如:
```java
public class User {
private Long id;
private String name;
@TableField(value = "create_time", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private LocalDateTime createTime;
@TableField(value = "birthday")
@JsonFormat(pattern = "yyyy-MM-dd")
private LocalDate birthday;
// ...
}
```
其中,@TableField注解用于指定数据库表中的字段名和自动填充属性,@JsonFormat注解用于指定日期时间类型字段的格式化方式。
以上示例中,createTime字段格式化为"yyyy-MM-dd HH:mm:ss",birthday字段格式化为"yyyy-MM-dd"。
3. 全局配置
可以通过MybatisPlus的全局配置来设置Java8日期时间类型的全局格式化方式,例如:
```java
@Configuration
public class MybatisPlusConfig {
@Bean
public MybatisPlusInterceptor mybatisPlusInterceptor() {
MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
// ...
return interceptor;
}
@Bean
public MybatisPlusPropertiesCustomizer mybatisPlusPropertiesCustomizer() {
return properties -> {
// 设置Java8日期时间类型的全局格式化方式
properties.getGlobalConfig().getDbConfig()
.setLogicDeleteValue("1")
.setLogicNotDeleteValue("0")
.setSqlInjector(new LogicSqlInjector())
.setMetaObjectHandler(new MyMetaObjectHandler())
.setDbConfig(new GlobalConfig.DbConfig()
.setLogicDeleteField("deleted")
.setTablePrefix("t_")
.setFormat(LocalDateTime.class, new MyDateFormat()));
};
}
private static class MyDateFormat extends IEnumJsonSerializer<LocalDateTime> {
private static final long serialVersionUID = 1L;
@Override
public String toJsonString(LocalDateTime object) {
return object.format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
}
}
}
```
以上示例中,通过MybatisPlusPropertiesCustomizer来设置Java8日期时间类型的全局格式化方式为"yyyy-MM-dd HH:mm:ss",并将其注入到MybatisPlus的全局配置中。
这样,在实体类中不再需要使用@JsonFormat注解来指定日期时间类型字段的格式化方式。
阅读全文