MyBatis逆向工程的创建和使用

1.什么是逆向工程

mybaits需要程序员自己编写sql语句,mybatis官方提供逆向工程 可以针对单表自动生成mybatis执行所需要的代码(mapper.java,mapper.xml、po..)

企业实际开发中,常用的逆向工程方式:

由于数据库的表生成java代码。

2.下载逆向工程

mybatis-generator-core-1.3.2-bundle.zip

3.使用方法(会用)

3.1运行逆向工程

官方文档中提供的运行逆向工程的几种方法

Running MyBatis Generator

MyBatis Generator (MBG) can be run in the following ways:

(1)From the command prompt with an XML configuration

(2)As an Ant task with an XML configuration

(3)As a Maven Plugin

(4)From another Java program with an XML configuration

(5)From another Java program with a Java based configuration

(6)还可以通过eclipse的插件生成代码

建议使用java程序方式(From another Java program with an XML configuration),不依赖开发工具。

下面创建一个生成逆向文件的工程,将自动生成的文件再拷贝到原工程中去(这么做是为了放止直接在源文件中生成会覆盖掉同名文件)

导入的jar包和工程结构截图如下:

如图

3.2生成代码配置文件

generatorConfig.xml:

<?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 id="testTables" targetRuntime="MyBatis3">
 <commentGenerator>
  <!-- 是否去除自动生成的注释 true:是 : false:否 -->
  <property name="suppressAllComments" value="true" />
 </commentGenerator>
 <!--数据库连接的信息:驱动类、连接地址、用户名、密码 -->
 <jdbcConnection driverClass="com.mysql.jdbc.Driver"
  connectionURL="jdbc:mysql://localhost:3306/mybatis" userId="root"
  password="1234">
 </jdbcConnection>
 <!-- <jdbcConnection driverClass="oracle.jdbc.OracleDriver"
  connectionURL="jdbc:oracle:thin:@127.0.0.1:1521:yycg"
  userId="yycg"
  password="yycg">
 </jdbcConnection> -->
 <!-- 默认false,把JDBC DECIMAL 和 NUMERIC 类型解析为 Integer,为 true时把JDBC DECIMAL 和
  NUMERIC 类型解析为java.math.BigDecimal -->
 <javaTypeResolver>
  <property name="forceBigDecimals" value="false" />
 </javaTypeResolver>
 <!-- targetProject:生成PO类的位置 -->
 <javaModelGenerator targetPackage="cn.edu.hpu.ssm.po"
  targetProject=".\src">
  <!-- enableSubPackages:是否让schema作为包的后缀 -->
  <property name="enableSubPackages" value="false" />
  <!-- 从数据库返回的值被清理前后的空格 -->
  <property name="trimStrings" value="true" />
 </javaModelGenerator>
 <!-- targetProject:mapper映射文件生成的位置 -->
 <sqlMapGenerator targetPackage="cn.edu.hpu.ssm.mapper"
  targetProject=".\src">
  <!-- enableSubPackages:是否让schema作为包的后缀 -->
  <property name="enableSubPackages" value="false" />
 </sqlMapGenerator>
 <!-- targetPackage:mapper接口生成的位置 -->
 <javaClientGenerator type="XMLMAPPER"
  targetPackage="cn.edu.hpu.ssm.mapper"
  targetProject=".\src">
  <!-- enableSubPackages:是否让schema作为包的后缀 -->
  <property name="enableSubPackages" value="false" />
 </javaClientGenerator>
 <!-- 指定数据库表 -->
 <table tableName="items"></table>
 <table tableName="orders"></table>
 <table tableName="orderdetail"></table>
 <table tableName="user"></table>
 <!-- <table schema="" tableName="sys_user"></table>
 <table schema="" tableName="sys_role"></table>
 <table schema="" tableName="sys_permission"></table>
 <table schema="" tableName="sys_user_role"></table>
 <table schema="" tableName="sys_role_permission"></table> -->
 <!-- 有些表的字段需要指定java类型
  <table schema="" tableName="">
  <columnOverride column="" javaType="" />
 </table> -->
 </context>
</generatorConfiguration> 

3.3执行生成程序

GeneratorSqlmap.java:
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import org.mybatis.generator.api.MyBatisGenerator;
import org.mybatis.generator.config.Configuration;
import org.mybatis.generator.config.xml.ConfigurationParser;
import org.mybatis.generator.internal.DefaultShellCallback;
public class GeneratorSqlmap {
 public void generator() throws Exception{
 List<String> warnings = new ArrayList<String>();
 boolean overwrite = true;
 //加载配置文件
 File configFile = new File("generatorConfig.xml");
 ConfigurationParser cp = new ConfigurationParser(warnings);
 Configuration config = cp.parseConfiguration(configFile);
 DefaultShellCallback callback = new DefaultShellCallback(overwrite);
 MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config,
  callback, warnings);
 myBatisGenerator.generate(null);
 }
 public static void main(String[] args) throws Exception {
 try {
  GeneratorSqlmap generatorSqlmap = new GeneratorSqlmap();
  generatorSqlmap.generator();
 } catch (Exception e) {
  e.printStackTrace();
 }
 }
} 

生成后的代码:

如图

3.4使用生成的代码

需要将生成工程中所生成的代码拷贝到自己的工程中。我们这里吧ItemsMapper.java和ItemsMapper.xml、Items、ItemsExample类拷入我们的原工程。

测试ItemsMapper中的方法

package cn.edu.hpu.ssm.test;
 import static org.junit.Assert.fail;
import java.util.Date;
import java.util.List;
import org.junit.Before;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import cn.edu.hpu.ssm.mapper.ItemsMapper;
import cn.edu.hpu.ssm.po.Items;
import cn.edu.hpu.ssm.po.ItemsExample;
public class ItemsMapperTest {
 private ApplicationContext applicationContext;
 private ItemsMapper itemsMapper;
 //注解Before是在执行本类所有测试方法之前先调用这个方法
 @Before
 public void setup() throws Exception{
 applicationContext=new ClassPathXmlApplicationContext("classpath:spring/applicationContext.xml");
 itemsMapper=(ItemsMapper)applicationContext.getBean("itemsMapper");
 }
 //根据主键删除
 @Test
 public void testDeleteByPrimaryKey() {
 fail("Not yet implemented");
 }
 //插入
 @Test
 public void testInsert() {
 Items items=new Items();
 items.setName("iPhone-5S");
 items.setPrice(3999f);
 items.setDetail("正品行货");
 items.setPic("sdasd.jpg");
 items.setCreatetime(new Date());
 itemsMapper.insert(items);
 }
 //自定义条件来查询
 @Test
 public void testSelectByExample() {
 ItemsExample itemsExample=new ItemsExample();
 //通过Criteria构造查询条件
 ItemsExample.Criteria criteria=itemsExample.createCriteria();
 criteria.andNameEqualTo("电视机");
 //可能返回多条记录
 List<Items> list=itemsMapper.selectByExample(itemsExample);
 for (int i = 0; i < list.size(); i++) {
  Items it=list.get(i);
  System.out.println(it.getId()+":"+it.getName());
 }
 }
 //根据主键来查询
 @Test
 public void testSelectByPrimaryKey() {
 Items items=itemsMapper.selectByPrimaryKey(1);
 System.out.println(items.getName());
 }
 //更新数据
 @Test
 public void testUpdateByPrimaryKey() {
 //对所有字段进行更新,需要先查询出来再更新
 Items items = itemsMapper.selectByPrimaryKey(1);
 items.setName("iPhone");
 itemsMapper.updateByPrimaryKey(items);
 //如果传入字段不空为才更新,在批量更新中使用此方法,不需要先查询再更新
 //itemsMapper.updateByPrimaryKeySelective(record);
 }
} 

总结

以上所述是小编给大家介绍的MyBatis逆向工程的创建和使用,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对我们网站的支持!

(0)

相关推荐

  • 浅析Spring和MyBatis整合及逆向工程

    spring和mybatis整合 整合思路 需要spring通过单例方式管理SqlSessionFactory. spring和mybatis整合生成代理对象,使用SqlSessionFactory创建SqlSession.(spring和mybatis整合自动完成) 持久层的mapper都需要由spring进行管理. 整合环境 创建一个新的java工程(接近实际开发的工程结构) jar包: mybatis3.2.7的jar包 spring3.2.0的jar包 mybatis和spring的整合

  • MyBatis框架之mybatis逆向工程自动生成代码

    Mybatis属于半自动ORM,在使用这个框架中,工作量最大的就是书写Mapping的映射文件,由于手动书写很容易出错,我们可以利用Mybatis-Generator来帮我们自动生成文件. 逆向工程 1.什么是逆向工程 mybaits需要程序员自己编写sql语句,mybatis官方提供逆向工程 可以针对单表自动生成mybatis执行所需要的代码(mapper.java,mapper.xml.po..) 企业实际开发中,常用的逆向工程方式: 由于数据库的表生成java代码. 2.下载逆向工程 my

  • MyBatis逆向工程的创建和使用

    1.什么是逆向工程 mybaits需要程序员自己编写sql语句,mybatis官方提供逆向工程 可以针对单表自动生成mybatis执行所需要的代码(mapper.java,mapper.xml.po..) 企业实际开发中,常用的逆向工程方式: 由于数据库的表生成java代码. 2.下载逆向工程 mybatis-generator-core-1.3.2-bundle.zip 3.使用方法(会用) 3.1运行逆向工程 官方文档中提供的运行逆向工程的几种方法 Running MyBatis Gener

  • 详解MyBatis逆向工程

    1.什么是mybatis逆向工程 在使用mybatis时需要程序员自己编写sql语句,针对单表的sql语句量是很大的,mybatis官方提供了一种根据数据库表生成mybatis执行代码的工具,这个工具就是一个逆向工程. 逆向工程:针对数据库单表-->生成代码(mapper.xml.mapper.java.pojo..) mybatis-generator-core-1.3.2.jar-逆向工程运行所需要的jar核心 包 2.配置逆向工程的配置文件 配置文件generatorConfig.xml

  • 基于mybatis逆向工程的使用步骤详解

    使用mybatis生成逆向工程的详细步骤,我个人感觉这个是最简单的一个了,虽然网上有很多种的方法来生成逆向工程,可是这个方法最简单.在这里我是使用maven搭建的环境,但是在正常的环境下也是一样的. 步骤: 1.创建一个genreatorConfig.xml文件,这个文件的名字可以任意.我创建的时候是将它放在了src/main/resources下,这个文件的内容并不需要去记,只需要去网上找就可以了.我们要做的只是对配置文件当中的一些部分做修改,修改成自己的数据就可以了. <?xml versi

  • idea使用Mybatis逆向工程插件详情

    目录 一.使用mybatis连接数据库 二.安装Better-Mybatis-Generator插件 三.关于example类详解 1.example成员变量 2.example使用 一.使用mybatis连接数据库 添加连接的mysql的信息,测试链接成功即可. 二.安装Better-Mybatis-Generator插件 安装成功后,在需要生成的表上右键选择mybatis-generator. 添加要生成的一些配置. 点击OK,第一次生成会弹出窗口,需要输入数据库的帐号密码.可以看到生成该表

  • SpringBoot整合MyBatis逆向工程及 MyBatis通用Mapper实例详解

    一.添加所需依赖,当前完整的pom文件如下: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd&q

  • 详解MyBatis Generator自动创建代码(dao,mapping,poji)

    连接的数据库为SQL server2008,所以需要的文件为sqljdbc4.jar 使用的lib库有: 在lib库目录下新建一个src文件夹用来存放生成的文件,然后新建generatorConfig.xml 里面代码为: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis G

  • mybatis逆向工程与分页在springboot中的应用及遇到坑

    最近在项目中应用到springboot与mybatis,在进行整合过程中遇到一些坑,在此将其整理出来,便于以后查阅与复习. 项目运行环境为:eclispe+jdk1.8+maven 搭建Spring Boot环境 首先建立maven project,在生成的pom文件中加入依赖,代码如下: <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-

  • 详解Mybatis逆向工程中使用Mysql8.0版本驱动遇到的问题

    前言 今天在使用 8.0.12 版的 mysql 驱动时遇到了各种各样的坑,在使用 JDBC 连接上遇到的问题可以参考我的上一篇博客.我在使用 mybatis 逆向工程生成各种 mapper , pojo , dao 时,遇到了一个困惑我好几个小时的错误,这个错误是 Result Maps collection already contains value for BaseResultMap 产生这个错误可能有各种原因.但是这里我只说我的原因及解决过程. 初步探索 我在网上查阅了大量的博客文章,

  • Mybatis逆向工程运行代码实例

    简单的理解,MyBatis逆向工程,就是通过相应插件,自动生成MyBatis数据库连接的一些文件. mybatis需要编写sql语句,mybatis官方提供逆向工程,可以针对单表自动生成mybatis执行所需要的代码(mapper.java.mapper.xml.pojo-),提高工作效率. 命令: mvn mybatis-generator:generate 项目结构: generatorConfig.xml内容示例 <?xml version="1.0" encoding=&

随机推荐