1. Add the plug-in and add the following configuration under the pom file <!-- mybatis-generator --> <plugin> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-maven-plugin</artifactId> <version>1.3.5</version> <configuration> <configurationFile> <!--Here is the path to configure generatorConfig.xml. If it is not specified, the generatorConfig.xml file will be found in the resources directory by default. --> </configurationFile> <verbose>true</verbose> <overwrite>true</overwrite> </configuration> <dependencies> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.11</version> </dependency> </dependencies> </plugin> 2. Create generatorConfig.xml under resources with the following content: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd"> <generatorConfiguration> <!-- context is the main configuration information for reverse engineering --> <!-- id: give it a name--> <!-- targetRuntime: Set the generated file to apply to that mybatis version --> <context id="default" targetRuntime="MyBatis3"> <!--optional, refers to controlling comments when creating a class--> <commentGenerator> <property name="suppressDate" value="true"/> <!-- Whether to remove automatically generated comments true: yes: false: no --> <property name="suppressAllComments" value="true"/> </commentGenerator> <!--jdbc database connection wg_insert is the database name--> <jdbcConnection driverClass="com.mysql.cj.jdbc.Driver" connectionURL="jdbc:mysql://localhost:3306/wg_insert?useUnicode=true&characeterEncoding=utf-8&serverTimezone=UTC" userId="root" password="123456"></jdbcConnection> <!--Optional, type processor, conversion control between database type and java type--> <javaTypeResolver> <!-- By default, the decimal and bigInt in the database correspond to the BigDecimal class in sql in Java --> <!-- Not double or long type --> <!-- Use common basic types instead of reference types under the sql package--> <property name="forceBigDecimals" value="false"/> </javaTypeResolver> <!-- targetPackage: the package where the generated entity class is located --> <!-- targetProject: the hard disk location where the generated entity class is located --> <javaModelGenerator targetPackage="com.wglvzyx.mybatisredis.entity" targetProject="src/main/java"> <!-- Whether to allow sub-packages --> <property name="enableSubPackages" value="false"/> <!-- Whether to add a constructor to modal--> <property name="constructorBased" value="true"/> <!-- Whether to clean up the blank characters on both sides of the string queried from the database --> <property name="trimStrings" value="true"/> <!-- Establish whether the modal object is immutable, that is, the generated modal object will not have a setter method, only a constructor --> <property name="immutable" value="false"/> </javaModelGenerator> <!-- targetPackage and targetProject: the package and location of the generated mapper file --> <sqlMapGenerator targetPackage="mapper" targetProject="src/main/resources"> <!-- For a database configuration, whether to use schema as a subpackage name --> <property name="enableSubPackages" value="false"/> </sqlMapGenerator> <!-- targetPackage and targetProject: the package and location of the generated interface file --> <javaClientGenerator type="XMLMAPPER" targetPackage="com.wglvzyx.mybatisredis.dao" targetProject="src/main/java"> <!-- For a configuration of Oracle database, whether to use schema as a subpackage name --> <property name="enableSubPackages" value="false"/> </javaClientGenerator> <!-- tableName is the table name in the database, domainObjectName is the generated JAVA model name, the following parameters do not need to be changed, if you want to generate more tables, continue to add table tags below--> <table tableName="student" domainObjectName="Student" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table> </context> </generatorConfiguration> 3. Run, there are two methods: Method 1: Add a "Run" option in Intellij IDEA and use Maven to run the mybatis-generator-maven-plugin plug-in (mybatis-generator:generate -e): Method 2: Open the Maven panel on the right, open mybatis-generator:generate under Mybatis-generator under Plugins, right-click Run Maven Build! Notice: Because I use mysql-8.0.11 So the configuration is different The main thing is that the new version has new features. First of all, the latest official support is to change com.mysql.jdbc.Driver to com.mysql.cj.jdbc.Driver. In addition, mysql8.0 does not need to establish an SSL connection. You need to explicitly turn it off, that is, useSSL=false in the url; finally, you need to set CST, which can be regarded as the standard time of the United States, Australia, Cuba or China. serverTimezone is used to set the time zone. You can check the relevant information to find out more! jdbc.driverClassName=com.mysql.cj.jdbc.Driver jdbc.url=jdbc:mysql://localhost:3306/mytest?useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true&useSSL=false&serverTimezone=UTC jdbc.username=root jdbc.password=123456 This is the end of this article about the pitfalls of using mybatis-generator with IDEA and MySQL 8.0.3. For more information about using mybatis-generator with MySQL in IDEA, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Javascript common higher-order functions details
>>: In-depth understanding of Vue's plug-in mechanism and installation details
Prepare 1. Download the required installation pac...
Based on SEO and security considerations, a 301 r...
The traditional method is to write a square in a ...
There are several ways I know of to set anchor pos...
Well, you may be a design guru, or maybe that'...
Table of contents 1. Content Overview 2. Concepts...
Table of contents Why optimize? ? Where to start?...
This article example shares the specific code of ...
Table of contents Preface Rendering setTable comp...
1: masterha_check_repl replica set error replicat...
Today's Tasks 1. Choice of Linux distribution...
This article shares the installation tutorial of ...
1. Problems encountered In the process of distrib...
The find command is used to search for files in a...
Table of contents 1. Falling into the pit 2. Stru...