MyBatis零基础回顾-逆向工程 And PageHelper插件使用

1、逆向工程的创建

创建项目导入mybatis和逆向工程所需jar包

MyBatis零基础回顾-逆向工程 And PageHelper插件使用_第1张图片

创建逆向工程的配置文件


  PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
  "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
  

    
 
      
            connectionURL="jdbc:mysql://localhost:3306/mybatis"
        userId="root"
        password="admin">
   

    
   
     
   

    
                targetProject=".\src">
     
     
   

    
            targetProject=".\src">
     
   

    
            targetProject=".\src">
     
   

    
   


 

运行生成文件

List warnings = new ArrayList();
        boolean overwrite = true;
        File configFile = new File("creatembg.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);

2、PageHelper插件使用

导入jar包

在核心配置文件中配置PageHelper插件

测试代码

在查询前面设置分页信息

MyBatis零基础回顾-逆向工程 And PageHelper插件使用_第2张图片

你可能感兴趣的:(MYBATIS)