【SSM_Mybatis】学习笔记06

MyBatis Generator(MBG

作用:根据数据库表自动生成Bean对象、Java接口及SqlMapper.xml配置文件;

官方文档:http://www.mybatis.org/generator/

下载地址:https://github.com/mybatis/generator/releases

1、搭建MBG项目;

(1)下载MBG核心包

mybatis-generator-core-1.3.7.jar

(2)创建java项目;

(3)从官方文档获取配置表、实例代码;

实例代码:


public class GeneratorTest {
    public static void main(String[] args) throws Exception {
           List warnings = new ArrayList();
           boolean overwrite = true;

          //generatorConfig.xml 配置文件
           File configFile = new File("src/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 "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
  "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">


  
 
 

   
 
   
       
       
           
           
         
         
       

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


    
   
     
   

   
   
     
     
     
     
   

    
   
   
     
   

   
   
     
   

    
    


    

    
   
 


(4)导入依赖包

2、MBG配置以及根据数据库表生成所需文件(Bean\Interface\mapper.xml);

运行实例代码之后,会自动生成bean层代码、mapper层代码,如果没有在配置文件上表名以下两行代码,会在bean文件中出现注释以及时间戳



       
           
           
         
         
       


3、使用自动生成的文件操作数据库;


    @Test
    public void Test() throws IOException {
        
                String resource = "SqlMapperConfig.xml";
                SqlSessionFactory ssf = new SqlSessionFactoryBuilder().
                        build(Resources.getResourceAsStream(resource));
                SqlSession sqlSession = ssf.openSession();
                 UserMapper uMapper = sqlSession.getMapper(UserMapper.class);
                   UserExample example = new UserExample();
                //将对象封装到createCriteria集合中去
                example.createCriteria().andUSexEqualTo("1").andUUsernameLike("%王%");
                //条件查询
                List list = uMapper.selectByExample(example);
                
                for (User user : list) {
                    System.out.println(user);
                }
    } 


有个需要说明的,在其中出现的错误:mybatis generator自动生成代码报The error occurred while processing mapper_resultMap[BaseResultMap]

解决办法:由于在运行实例代码生成代码时,运行了两次,但是对于mapper.xml文件,并不是覆盖了原来的文件,而是将新的文件接在文档后,所以文件变大,并且报错;这时需要将生成的代码删除,然后重新生成并测试。问题解决。

你可能感兴趣的:(ssm_mybatis)