Mybatis-plus最新代码生成器(3.5.1+)的使用

1.引入依赖:



    com.baomidou
    mybatis-plus-boot-starter
    3.4.3.4



    com.baomidou
    mybatis-plus-generator
    3.5.1



    org.apache.velocity
    velocity-engine-core
    2.3



    org.freemarker
    freemarker



    mysql
    mysql-connector-java
    runtime

解释一下为什么要引两个模板依赖:

?? 因为plus代码生成器需要一个模板引擎,velocity和freemarker任选一个,velocity是生成器中默认使用的,根据你的选择引依赖。

2.写一个构造器类

随便创建一个类:像启动类那样有个psvm能跑就行

public class PracticeApplication {

    public static void main(String[] args) {
        代码生成器。。。。;
    }

}

接下来就是写生成逻辑了,很简单,看官网:

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