MyBatis plus和maven的依赖


文章目录

  • MyBatis plus和maven的依赖
  • 添加mybatis plus的依赖
  • 在配置类中配置MybatisSqlSessionFactoryBean
  • 编写Mapper接口继承mybatis plus提供的BaseMapper接口
  • 常见报错
  • mybatis plus的代码生成器
  • 1.添加代码生成器的依赖
  • 2.添加模板引擎的依赖
  • 3.添加mysql的驱动
  • 4.添加slf4j依赖
  • 5.编写java代码



添加mybatis plus的依赖

<dependency>
    <groupId>com.baomidou</groupId>
    <artifactId>mybatis-plus-boot-starter</artifactId>
    <version>3.4.2</version>
</dependency>

在entity所在的包中添加lombok的依赖

<dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <scope>provided</scope>
        </dependency>

在配置类中配置MybatisSqlSessionFactoryBean

@Configuration
public class MapperConfig {

    @Bean
    //配置数据源
    public DataSource getDataSource(){
        DruidDataSource druidDataSource = new DruidDataSource();
        druidDataSource.setDriverClassName("com.mysql.jdbc.Driver");
        druidDataSource.setUrl("jdbc:mysql://localhost:3306/mybatis?characterEncoding=utf8");
        druidDataSource.setUsername("root");
        druidDataSource.setPassword("666");
        return druidDataSource;
    }

    @Bean
    //配置MybatisSqlSessionFactoryBean 
    public MybatisSqlSessionFactoryBean mybatisSqlSessionFactoryBean(){
        MybatisSqlSessionFactoryBean sqlSessionFactoryBean = new MybatisSqlSessionFactoryBean();
        MybatisConfiguration mybatisConfiguration = new MybatisConfiguration();
        //分页插件
        PageInterceptor pageInterceptor = new PageInterceptor();
        sqlSessionFactoryBean.setPlugins(pageInterceptor);
        sqlSessionFactoryBean.setDataSource(getDataSource());
        //log4j
        mybatisConfiguration.setLogImpl(Log4jImpl.class);
        sqlSessionFactoryBean.setConfiguration(mybatisConfiguration);
        return sqlSessionFactoryBean;
    }
    @Bean
        //配置包扫描的位置
    public MapperScannerConfigurer mapperScannerConfigurer(){
        MapperScannerConfigurer mapperScannerConfigurer = new MapperScannerConfigurer();
        mapperScannerConfigurer.setBasePackage("com.qy28.cn.mapper");
        return mapperScannerConfigurer;
    }
}

编写Mapper接口继承mybatis plus提供的BaseMapper接口

public interface GoodMapper extends BaseMapper<Good> {

}

BaseMapper中提供好了增删改查的方法

常见报错

  • 表名和类名不一致,也不遵循驼峰命名
    原因:mybatis plus是动态拼接的sql
    解决方案:
//在类上添加@TableName注解,参数中指定表名
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("goods")
public class Good implements Serializable {

    private static final long serialVersionUID = 1L;

    private Long id;

    private String pName;

    private Double pPrice;

    private String pImg;

    private String pDesc;
}
  • 属性名和列名不一致
    解决方案:
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("goods")
public class Good implements Serializable {

    private static final long serialVersionUID = 1L;
    private Long id;
    //这个注解表示标注的属性与表中的哪个列名进行对应
    @TableField("good_name")
    private String pName;

    private Double pPrice;

    private String pImg;

    private String pDesc;
}
  • 当数据库中主键是自增的情况下
    解决方案:
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("goods")
public class Good implements Serializable {
    private static final long serialVersionUID = 1L;
	//添加@TableId参数type = IdType.AUTO表示表中的id属性为自增 如果id为UUID可指定类型为type = IdType.ASSIGN_UUID
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    @TableField("good_name")
    private String pName;

    private Double pPrice;

    private String pImg;

    private String pDesc;
}
  • 当实体类中的有的属性,但是表中没有这个字段
    解决方案
  • 第一种:静态修饰
private static String xxxxx;
  • 第二种:使用transient关键字
private transient String xxxxx;
  • 第三种:使用@TableField注解
@TableField(exist = false)
private String xxxxx;

mybatis plus默认开启驼峰命名

mybatis plus的代码生成器

1.添加代码生成器的依赖

<dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-generator</artifactId>
            <version>3.3.2</version>
        </dependency>

2.添加模板引擎的依赖

<dependency>
            <groupId>org.freemarker</groupId>
            <artifactId>freemarker</artifactId>
            <version>2.3.31</version>
        </dependency>

3.添加mysql的驱动

<dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.47</version>
   </dependency>

4.添加slf4j依赖

<dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-simple</artifactId>
             <version>1.7.25</version>
        </dependency>

5.编写java代码

public static String scanner(String tip) {
        Scanner scanner = new Scanner(System.in);
        StringBuilder help = new StringBuilder();
        help.append("请输入" + tip + ":");
        System.out.println(help.toString());
        if (scanner.hasNext()) {
            String ipt = scanner.next();
            if (StringUtils.isNotBlank(ipt)) {
                return ipt;
            }
        }
        throw new MybatisPlusException("请输入正确的" + tip + "!");
    }

    public static void main(String[] args) {
        // 代码生成器
        AutoGenerator mpg = new AutoGenerator();

        // 全局配置
        GlobalConfig gc = new GlobalConfig();
        String projectPath = System.getProperty("user.dir");
        gc.setOutputDir(projectPath + "/src/main/java");
        //签名
        gc.setAuthor("阿飞");
        gc.setOpen(false);
        // gc.setSwagger2(true); 实体属性 Swagger2 注解
        mpg.setGlobalConfig(gc);

        // 数据源配置
        DataSourceConfig dsc = new DataSourceConfig();
        dsc.setUrl("jdbc:mysql://localhost:3306/mybatis?useUnicode=true&useSSL=false&characterEncoding=utf8");
        // dsc.setSchemaName("public");
        dsc.setDriverName("com.mysql.jdbc.Driver");
        dsc.setUsername("root");
        dsc.setPassword("666");
        mpg.setDataSource(dsc);

        // 包配置
        PackageConfig pc = new PackageConfig();
        pc.setModuleName(scanner("模块名"));
        pc.setParent("com.qy28");
        mpg.setPackageInfo(pc);

        // 自定义配置
        InjectionConfig cfg = new InjectionConfig() {
            @Override
            public void initMap() {
                // to do nothing
            }
        };

        // 如果模板引擎是 freemarker
        String templatePath = "/templates/mapper.xml.ftl";
        // 如果模板引擎是 velocity
        // String templatePath = "/templates/mapper.xml.vm";

        // 自定义输出配置
        List<FileOutConfig> focList = new ArrayList<>();
        // 自定义配置会被优先输出
        focList.add(new FileOutConfig(templatePath) {
            @Override
            public String outputFile(TableInfo tableInfo) {
                // 自定义输出文件名 , 如果你 Entity 设置了前后缀、此处注意 xml 的名称会跟着发生变化!!
                return projectPath + "/src/main/resources/mapper/" + pc.getModuleName()
                        + "/" + tableInfo.getEntityName() + "Mapper" + StringPool.DOT_XML;
            }
        });
        /*
        cfg.setFileCreate(new IFileCreate() {
            @Override
            public boolean isCreate(ConfigBuilder configBuilder, FileType fileType, String filePath) {
                // 判断自定义文件夹是否需要创建
                checkDir("调用默认方法创建的目录,自定义目录用");
                if (fileType == FileType.MAPPER) {
                    // 已经生成 mapper 文件判断存在,不想重新生成返回 false
                    return !new File(filePath).exists();
                }
                // 允许生成模板文件
                return true;
            }
        });
        */
        cfg.setFileOutConfigList(focList);
        mpg.setCfg(cfg);

        // 配置模板
        TemplateConfig templateConfig = new TemplateConfig();

        // 配置自定义输出模板
        //指定自定义模板路径,注意不要带上.ftl/.vm, 会根据使用的模板引擎自动识别
        // templateConfig.setEntity("templates/entity2.java");
        // templateConfig.setService();
        // templateConfig.setController();

        templateConfig.setXml(null);
        mpg.setTemplate(templateConfig);

        // 策略配置
        StrategyConfig strategy = new StrategyConfig();
        strategy.setNaming(NamingStrategy.underline_to_camel);
        strategy.setColumnNaming(NamingStrategy.underline_to_camel);
        strategy.setEntityLombokModel(true);
        strategy.setRestControllerStyle(true);
        strategy.setInclude(scanner("表名,多个英文逗号分割").split(","));
        strategy.setControllerMappingHyphenStyle(true);
        strategy.setTablePrefix(pc.getModuleName() + "_");
        mpg.setStrategy(strategy);
        mpg.setTemplateEngine(new FreemarkerTemplateEngine());
        mpg.execute();
    }

直接官网复制粘贴到自己代码中即可