利用mybatis逆向工程生成pojo实体类 , mapper.xml以及mapper.java这些工具

最重要的就是修改generatorConfig.xml 中的属性 ,根据提示自己设置好 , 另外这是别人的maven工程, 导入以后你要自己设置你自己的maven路径 ,否则会报错 , 下方的数据库表就是你要生成的表关系 , 根据自己的需要修改数据库以及表 , 然后即可自动生成所需要的东西

 <jdbcConnection driverClass="com.mysql.jdbc.Driver"
                      connectionURL="jdbc:mysql://localhost:3306/foodie-shop-dev"
                      userId="root"
                      password="root">
      </jdbcConnection>

      <!-- 对应生成的pojo所在包 -->
      <javaModelGenerator targetPackage="com.imooc.pojo" targetProject="src/main/java"/>

<!-- 对应生成的mapper所在目录 -->
      <sqlMapGenerator targetPackage="mapper" targetProject="src/main/resources"/>

<!-- 配置mapper对应的java映射 -->
      <javaClientGenerator targetPackage="com.imooc.mapper" targetProject="src/main/java" type="XMLMAPPER"/>

      <!-- 数据库表 -->
<table tableName="carousel"></table>
<table tableName="category"></table>
<table tableName="items"></table>
<table tableName="items_comments"></table>
<table tableName="items_img"></table>
<table tableName="items_param"></table>
<table tableName="items_spec"></table>
<table tableName="order_items"></table>
<table tableName="order_status"></table>
<table tableName="orders"></table>
<table tableName="stu"></table>
<table tableName="user_address"></table>
<table tableName="users"></table>

提取码:pq7o

Logo

更多推荐