使用mybatis-generator自动生成Mybatis

使用mybatis-generator自动生成Mybatis

我这里使用的是IDEA,使用的Maven管理,整合SpringBoot+Mybatis+Druid

首先要在pom文件中导入相关的配置,已经在里面进行标注 !!!处




  4.0.0

  com.miaoshaproject
  miaosha
  1.0-SNAPSHOT

  miaosha
  
  http://www.example.com

  
    org.springframework.boot
    spring-boot-starter-parent
    2.2.1.RELEASE
  


  
    UTF-8
    1.7
    1.7
  

  

    
    
      org.springframework.boot
      spring-boot-starter-web
    
    
    
      mysql
      mysql-connector-java
      5.1.41
    
    
    
      com.alibaba
      druid
      1.1.3
    
    
    
      org.mybatis.spring.boot
      mybatis-spring-boot-starter
      1.3.1
    


    
      junit
      junit
      4.11
      test
    
  

  
    
      
        
        
          maven-clean-plugin
          3.1.0
        
        
        
          maven-resources-plugin
          3.0.2
        
        
          maven-compiler-plugin
          3.8.0
        
        
          maven-surefire-plugin
          2.22.1
        
        
          maven-jar-plugin
          3.0.2
        
        
          maven-install-plugin
          2.5.2
        
        
          maven-deploy-plugin
          2.8.2
        
        
        
          maven-site-plugin
          3.7.1
        
          
              maven-project-info-reports-plugin
              3.0.0
          

			
          
              org.mybatis.generator
              mybatis-generator-maven-plugin
              1.3.5
              
                  
                      org.mybatis.generator
                      mybatis-generator-core
                      1.3.5
                  
                  
                      mysql
                      mysql-connector-java
                      5.1.41
                  
              
              
                  
                      mybatis generator
                      package
                      
                          generate
                      
                  
              
              
                  
                  true
                  
                  true
                  
                  
                      src/main/resources/mybatis-generator.xml
                  
              
          
      
    
  


使用mybatis-generator自动生成Mybatis_第1张图片
这是当前目录的结构

mybatis-generator.xml内容





    

    

        
        
        


        
            
        

        
        
            
            
        

        
        
            
        

        
        
            
        

        
        

这里我是在数据库中已经创建好数据库的,要表名和配置文件中的表名一致
在这里插入图片描述
application.xml内容

server.port=8090
mybatis.mapper-locations=classpath:mapping/*.xml

在所有配置好后
在上面的菜单上点run->edit con… ->+ ->maven
在command line中输入 mybatis-generator:generate
如图所示:
使用mybatis-generator自动生成Mybatis_第2张图片
运行即可

最终会生成如下的目录:
使用mybatis-generator自动生成Mybatis_第3张图片

创建成功

你可能感兴趣的:(配置相关,Mybatis,Spring)