Mybatis-plusメインキーの自己増加と自動注入時間を実現するコード例


mybatis-plus依存導入

<dependency>
      <groupId>com.baomidou</groupId>
      <artifactId>mybatis-plus-boot-starter</artifactId>
      <version>3.3.2</version>
    </dependency>
3.3.0以降のバージョンを使用することを推奨します。
mybatis-plusを導入してmybatisを導入しなくてもいいです。衝突します。
データベースを接続

spring.datasource.username=root
spring.datasource.password=19981204
spring.datasource.url=jdbc:mysql://localhost:3306/mybatis_plus?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf-8
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

mybatis-plus.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl//      
メインキーを設定してから増加します

@Data
@AllArgsConstructor
@NoArgsConstructor
public class User {
  @TableId(type = IdType.AUTO)
  private Long id;
  private String name;
  private Integer age;
  private String email;
  
}
注@TableId(type=IdType.AUTO)を使用して、データベースの中のidフィールドを自己増加に設定すればいいです。
設定クラスを作成して自動注入時間を行います。
コメントを使う@Table Filed(fill=FieldFill.INSERT)

@Data
@AllArgsConstructor
@NoArgsConstructor
public class User {
  @TableId(type = IdType.AUTO)
  private Long id;
  private String name;
  private Integer age;
  private String email;
  @TableField(fill = FieldFill.INSERT)
  private LocalDateTime createTime;
  @TableField(fill = FieldFill.INSERT_UPDATE)
  private LocalDateTime updateTime;
}

package com.ls.handler;

    import com.baomidou.mybatisplus.core.handlers.MetaObjectHandler;
    import org.apache.ibatis.reflection.MetaObject;
    import org.springframework.stereotype.Component;

    import java.time.LocalDateTime;

/**
 * @author dell
 */
@Component
public class MyMetaObjectHandler implements MetaObjectHandler {
  @Override
  public void insertFill(MetaObject metaObject) {
    this.strictInsertFill(metaObject,"createTime", LocalDateTime.class,LocalDateTime.now());
    this.strictUpdateFill(metaObject,"updateTime",LocalDateTime.class,LocalDateTime.now());

  }

  @Override
  public void updateFill(MetaObject metaObject) {
    this.strictUpdateFill(metaObject,"updateTime",LocalDateTime.class,LocalDateTime.now());
  }
}
ここで、Mybatis-plusのメインキーの増加と自動注入時間を実現するためのコード例についての記事を紹介します。Mybatis-plusのメインキーの増加と自動注入時間の内容については、以前の文章を検索したり、下記の関連記事をご覧になったりしてください。これからもよろしくお願いします。