1. 程式人生 > 其它 >Intellij 的使用 mybatis的逆向工程

Intellij 的使用 mybatis的逆向工程

修改pom檔案,再bulid子節點,新增構建外掛

<build>
        <plugins>
            <plugin>
                <groupId>org.mybatis.generator</groupId>
                <artifactId>mybatis-generator-maven-plugin</artifactId>
                <version>1.3.2</version>
            </plugin>

若想增加jsp支援,需要

 <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-jasper</artifactId>
            <scope>provided</scope>
        </dependency>

拷貝generatorConfig.xml 到resouce資料夾

修改裡面,第一行加入 新增classpathEntry,增加mysql的全路徑驅動,如 D:\\repo\\mysql\\mysql-connector-java\\8.0.23\\mysql-connector-java-8.0.23.jar,這部很關鍵,否則提示一個數據庫的全類目。然後就不運行了。

<classPathEntry  location="D:\\repo\\mysql\\mysql-connector-java\\8.0.23\\mysql-connector-java-8.0.23.jar"></classPathEntry>

然後修改執行配置資訊,新增maven選項,

這裡紅線出現的執行引數,可以再增加構建外掛後,自動提示出現。

,修改application.yml檔案,增加資料來源和jsp頁面支援

spring:
  mvc:
    view:
      suffix: .jsp
      prefix: /
  datasource:
    driver
-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://localhost:3306/zhouyi2?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=Asia/Shanghai username: root password: xxxxx