关于Springboot2.0整合mybatisplus2.*到3.*遇到的坑

因为一直要用自动生成策略所以包出问题了,各种杂包关于Springboot2.0整合mybatisplus2.*到3.*遇到的坑_第1张图片这个MP核心库根本不需要我们关心,springboot已经提供了一个整合不要导入这个包关于Springboot2.0整合mybatisplus2.*到3.*遇到的坑_第2张图片做个就是整合包但是版本一定要兼最新用了mybatis-plus-boot这个包之后其他的包基本上不需要了爬过的坑用了两个小时解决,在我们初级创建的时候不要勾选mybatis我们不需要mybatis包直接跳过,在后面通过Maven 进行添加

贴一个Maven的配置



    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.1.4.RELEASE
         
    
    tt
    springboot_mybatis_layfenye
    0.0.1-SNAPSHOT
    springboot_mybatis_layfenye
    Demo project for Spring Boot
    
        UTF-8
        UTF-8
        1.8
    
    
        
            org.springframework.boot
            spring-boot-starter-jdbc
        
        
            org.springframework.boot
            spring-boot-starter-thymeleaf
        
        
            org.springframework.boot
            spring-boot-starter-web
        
        
        
            com.baomidou
            mybatis-plus-boot-starter
            3.1.1
        
        
            mysql
            mysql-connector-java
            runtime
        
        
            org.projectlombok
            lombok
            true
        
        
        
            com.baomidou
            mybatis-plus-generator
            3.1.1
        
        
        
            org.apache.velocity
            velocity-engine-core
            2.1
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    
    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    
    
  

 

你可能感兴趣的:(关于Springboot2.0整合mybatisplus2.*到3.*遇到的坑)