当前位置:   article > 正文

逆向工程配置及报错_逆向工程的时候javatyperesolver 报错com.pcloud.kpi.config.my

逆向工程的时候javatyperesolver 报错com.pcloud.kpi.config.myjavatyperesolver

一 配置

pom文件配置

放在build中即可

  		<plugins>
            <plugin>
                <groupId>org.mybatis.generator</groupId>
                <artifactId>mybatis-generator-maven-plugin</artifactId>
                <version>1.3.6</version>
                <configuration>
                    <!--暴露配置文件的位置-->
                    <configurationFile>GeneratorMapper.xml</configurationFile>
                    <verbose>true</verbose>
                    <overwrite>true</overwrite>
                </configuration>
            </plugin>
        </plugins>
        
         <!--控制mapper编译后放置的位置-->
        <resources>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.xml</include>
                </includes>
            </resource>
        </resources>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

GeneratorMapper.xml 需要修改的地方

指定mysql jar包的位置

需要在路径后加上jar包的文件名示例中为 mysql-connector-java-5.1.46.jar
jar包版本过低报错.

    <!-- 指定连接数据库的JDBC驱动包所在位置,指定到你本机的完整路径 -->
  <classPathEntry location="D:\mysql-connector-java-5.1.46.jar"/>
  • 1
  • 2

数据库连接信息配置

1.IP地址 端口号 被连接的数据库名 账号 密码

<jdbcConnection driverClass="com.mysql.jdbc.Driver"
                    connectionURL="jdbc:mysql://192.168.19.129:3306/springboot"
                    userId="root"
                    password="root">
    </jdbcConnection>
  • 1
  • 2
  • 3
  • 4
  • 5

数据库连接信息配置

被逆向生成的表 tableName="t_user
逆向后生成的类名 domainObjectName="User"

 <table tableName="t_user"
               domainObjectName="User"
               enableCountByExample="false"
               enableUpdateByExample="false"
               enableDeleteByExample="false"
               enableSelectByExample="false"
               selectByExampleQueryId="false">
            
 </table>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

其它

1 给所有逆向生成的实体类实现序列化接口
public class User implements Serializable
  • 1
2 让实体类被spring管理

1.在实体类上加@Mapper注解

@Mapper
public class User implements Serializable
  • 1
  • 2

2.在主程序入口加包扫描注解,多个包用逗号分隔开即可

@MapperScan(basePackages = {"com.springboot.mapper","com.springboot.mapper2"})
  • 1

二 报错

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号