A.CTable+springboot+mybatis-plus自动更新数据表结构增加或者删除表字段

A.CTable+springboot+mybatis-plus自动更新数据表结构增加或者删除表字段

首先非常感谢孙琛斌提供的A.CTable框架
孙琛斌原创

其实对于数据表结构的更改可以用hibernate enhance 一种方式使用Ebean框架对数据表结构的更新,而对于mybatis-plus使用A.CTable同样可以实现对数据库表结构的更新话不多说直接上代码:

首先引入坐标:

   
   <dependency>
       <groupId>com.gitee.sunchenbin.mybatis.actablegroupId>
       <artifactId>mybatis-enhance-actableartifactId>
       <version>1.4.6.RELEASEversion>
   dependency>
   
    <dependency>
        <groupId>com.baomidougroupId>
        <artifactId>mybatis-plus-boot-starterartifactId>
        <version>3.1.2version>
    dependency>
     
    <dependency>
        <groupId>com.baomidougroupId>
        <artifactId>mybatis-plusartifactId>
        <version>3.1.2version>
    dependency>
    
    <dependency>
        <groupId>com.baomidougroupId>
        <artifactId>mybatis-plus-extensionartifactId>
        <version>3.1.2version>
    dependency>
    
      <dependency>
        <groupId>org.projectlombokgroupId>
        <artifactId>lombokartifactId>
        <version>1.18.2version>
    dependency>

在application.yml进行配置:

server:
  port: 8011
mybatis:
  table:
    auto: update
    #create    系统启动后,会将所有的表删除掉,然后根据model中配置的结构重新建表,该操作会破坏原有数据。
    #update    系统会自动判断哪些表是新建的,哪些字段要修改类型等,哪些字段要删除,哪些字段要新增,该操作不会破坏原有数据。
    #none     系统不做任何处理。
    #add      新增表/新增字段/新增索引/新增唯一约束的功能,不做做修改和删除 (只在版本1.0.9.RELEASE及以上支持)。
  model:
    pack: com.person.provider.entity #扫描用于创建表的对象的包名,多个包用“,”隔开
  database:
    type: mysql #数据库类型 目前只支持mysql
spring:
  datasource:
    url: jdbc:mysql://127.0.0.1:3306/leadnews_user?useSSL=false&&characterEncoding=UTF-8
    driver-class-name: com.mysql.jdbc.Driver
    username: root
    password: root
mybatis-plus:
  mapper-locations: classpath*:xxxxxx/*.xml,classpath*:com/gitee/sunchenbin/mybatis/actable/mapping/*/*.xml
  #mapper-locations内容逗号前面是自己项目的xml文件所放位置,比如自己的xml文件在resources:mapper:userMapper.xml那么逗号前面的路径更改为classpath:mapper/*.xml逗号后面的直接复制

在启动类上添加注解:

@SpringBootApplication
@MapperScan({
     "com.gitee.sunchenbin.mybatis.actable.dao.*","com.person.provider.mapper"}) //逗号前面直接复制不要更改,注意这里可以指定多个包,逗号间隔,逗号后面写自己的dao包路径
@ComponentScan({
     "com.gitee.sunchenbin.mybatis.actable.manager.*","com.person"}) //逗号前面直接复制不要更改,逗号后面写自己的controller层包路径
public class ProviderApp {
     
    public static void main(String[] args){
     
        SpringApplication.run(ProviderApp.class,args);
    }
}

在yml配置的扫描包 com.person.provider.entity下新建实体类 基础类SuperEntity:

package com.person.provider.entity;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.gitee.sunchenbin.mybatis.actable.annotation.Column;
import com.gitee.sunchenbin.mybatis.actable.annotation.IsAutoIncrement;
import com.gitee.sunchenbin.mybatis.actable.annotation.IsKey;
import lombok.Getter;
import lombok.Setter;

import java.util.Date;

@Getter //lombok注解,不用管
@Setter //lombok注解,不用管
public class SuperEntity {
     
    /**
     * 主键
     */
    @TableId(type = IdType.AUTO) //mybatis-plus主键注解
    @IsKey                         //actable主键注解
    @IsAutoIncrement             //自增
    @Column                     //对应数据库字段,不配置name会直接采用属性名作为字段名
    private Long id;
    /**
     * 创建时间
     */
    @Column(name = "create_time",comment = "创建时间") // name指定数据库字段名,comment为备注
    private Date createTime;
    /**
     * 最后修改时间
     */
    @Column(name = "update_time",comment = "最后修改时间")
    private Date updateTime;
}

在yml配置的扫描包 com.person.provider.entity下新建在数据库加的表结构User类:

package com.person.provider.entity;

import com.gitee.sunchenbin.mybatis.actable.annotation.Column;
import com.gitee.sunchenbin.mybatis.actable.annotation.Table;
import lombok.Data;

@Data //lombok注解,不用管
@Table(name = "t_user") //对应数据库表名,如果更改表名需要同步更改数据库表名,不然会重新创建表。
public class User extends SuperEntity {
     
    @Column
    private String username;
    @Column
    private String password;
}

一切准备就绪启动项目开始运行:

A.CTable+springboot+mybatis-plus自动更新数据表结构增加或者删除表字段_第1张图片

当看到这样的提示时表示数据库表已经更新完毕,接下来打开数据库看下是否新增了一个表结构:

A.CTable+springboot+mybatis-plus自动更新数据表结构增加或者删除表字段_第2张图片

果然很完美,java已经自动帮你新建了一个数据库表!有了这个工具,以后建表,建库,那就太方便了,真香!!!

你可能感兴趣的:(mybatis,mysql,java,数据库)