Java日记——IntelliJ破解MyBatis插件

MyBastis是一个很常用的Orm框架,但它不同于其他框架的是,每个model都有一个mapper.xml,还有一个mapper.xml的实现接口,如果这些都让程序员去写的话实在是太麻烦了,MyBastis插件的出现解决了这个问题,可惜MyBatis插件需要收费,这篇博客就教大家如何在IntelliJ破解使用MyBatis插件

1.下载好MyBatis的jar包

mybaits的代码由github.com管理,
地址:https://github.com/mybatis/mybatis-3/releases
核心文件mybatis3.3.1.jar

2.下载好MyBatis的插件包

http://download.csdn.net/detail/qq_32198277/9707864

Windows用户
去到C:/Users/Administrator/.IntelliJIdea2016.2/config/plugins
把解压后的mybatis_plug复制进去

Linux用户
去到/home/用户名/.IntelliJIdea2016.2/config/plugins
把解压后的mybatis_plug复制进去

Mac用户
去到/Users/用户名/Library/Application Support/IntelliJIdea2016.2
把解压后的mybatis_plug复制进去

重启Idea

3创建数据库和表

创建一个名为test的数据库
再创建一个测试用的表,我们这取名为chat_user

4.创建放置model,mapper和mapperInterface的包

我这分别取名为com.yihaomen.model,com.yihaomen.mapper和com.yihaomen.inter

5.在src目录下创建一个mbgConfiguration.xml






    
    

    

        
        
            
            
        
        

        
        
        

        
            
        

        
        
            
            
        

        
        
            
        

        
        
            
        

        
        

如果你想生成 example 之类的东西,需要在

里面去掉

example相当于把查询条件封装成一个类

enableCountByExample="false" enableUpdateByExample="false"
enableDeleteByExample="false" enableSelectByExample="false"
selectByExampleQueryId="false"

6.生成文件

右键mbgConfiguration.xml
点击Run As MyBastis Generator

生成之后的效果

Java日记——IntelliJ破解MyBatis插件_第1张图片
这里写图片描述

你可能感兴趣的:(Java日记——IntelliJ破解MyBatis插件)