资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

如何实现Springboot版mybatis逆向生成

这篇文章主要介绍如何实现Springboot版mybatis逆向生成,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

我们提供的服务有:成都网站建设、网站制作、微信公众号开发、网站优化、网站认证、聂荣ssl等。为上千企事业单位解决了网站和推广的问题。提供周到的售前咨询和贴心的售后服务,是有科学管理、有技术的聂荣网站制作公司

代码生成器

逆向生成MySQL对应的pojo和mybatis通过单独的一个工程不影响现有的业务逻辑。

  • mybatis-generatorConfig工程

如何实现Springboot版mybatis逆向生成

如何实现Springboot版mybatis逆向生成

如何实现Springboot版mybatis逆向生成

通过源码里面的sql生成对应的表结构和表数据。

如何实现Springboot版mybatis逆向生成

mybatis-generatorConfig的pom文件


  4.0.0


   com.idig8
    0.0.1-SNAPSHOT

  mybatis-generatorConfig

    
        UTF-8
    

    

        
        
            org.springframework.boot
            spring-boot-starter-log4j
            1.3.8.RELEASE
        

        
        
            com.alibaba
            druid
            1.1.0
        
        
            com.alibaba
            druid-spring-boot-starter
            1.1.0
        

        
            mysql
            mysql-connector-java
            5.1.41
        

        
        
            org.mybatis.spring.boot
            mybatis-spring-boot-starter
            1.3.1
        
        
        
            tk.mybatis
            mapper-spring-boot-starter
            1.2.4
        
        
        
            com.github.pagehelper
            pagehelper-spring-boot-starter
            1.2.3
        

        
        
            org.mybatis.generator
            mybatis-generator-core
            1.3.2
            compile
            true
        
    

添加generatorConfig.xml文件





    
        
        

        
            
        

        
        

        
        

        
        

        
        


        

    

GeneratorDisplay.java类

package com.idig8.mybatis.utils;

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 GeneratorDisplay {

    public void generator() throws Exception{

        List warnings = new ArrayList();
        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 {
            GeneratorDisplay generatorSqlmap = new GeneratorDisplay();
            generatorSqlmap.generator();
        } catch (Exception e) {
            e.printStackTrace();
        }

    }
}

添加MyMapper.java文件

/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2014-2016 abel533@gmail.com
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

package com.idig8.utils;

import tk.mybatis.mapper.common.Mapper;
import tk.mybatis.mapper.common.MySqlMapper;

public interface MyMapper extends Mapper, MySqlMapper {
    //TODO
    //FIXME 特别注意,该接口不能被扫描到,否则会出错
}
  • 运行GeneratorDisplay的main方法

如何实现Springboot版mybatis逆向生成

  1. 复制com.idig8.mapper目录到wx-springboot-mapper项目下
    如何实现Springboot版mybatis逆向生成
    如何实现Springboot版mybatis逆向生成

  2. 复制com.idig8.pojo 目录到wx-springboot-pojo项目下
    如何实现Springboot版mybatis逆向生成
    如何实现Springboot版mybatis逆向生成

  3. 复制com.idig8.utils 目录到wx-springboot-common项目下
    如何实现Springboot版mybatis逆向生成
    如何实现Springboot版mybatis逆向生成

  4. 复制resources mapper到wx-springboot-api的resources里面
    如何实现Springboot版mybatis逆向生成
    如何实现Springboot版mybatis逆向生成

PS:mybatis-generatorConfig 可以看成一个单独的项目,主要的目的就是为了升成对应的mapper.xml和对应的pojo实体类,mapper对应的实体。

以上是“如何实现Springboot版mybatis逆向生成”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注创新互联行业资讯频道!


分享题目:如何实现Springboot版mybatis逆向生成
路径分享:http://cdkjz.cn/article/igicee.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

业务热线:400-028-6601 / 大客户专线   成都:13518219792   座机:028-86922220