Springboot-2.0.6.RELEASE版本集成Mybatis-plus及Mysql

1、POM文件引入相应jar包

Springboot-2.0.6.RELEASE版本集成Mybatis-plus及Mysql_第1张图片

Springboot-2.0.6.RELEASE版本集成Mybatis-plus及Mysql_第2张图片



    com.baomidou
    mybatis-plus-boot-starter
    3.0.6



    com.alibaba
    druid
    1.0.29



    mysql
    mysql-connector-java
    8.0.13



    org.springframework.boot
    spring-boot-starter-jdbc



    org.projectlombok
    lombok
    1.16.22

2、yml文件配置

#服务端口
server:
  port: 5555

spring:
  datasource:
    # 使用druid数据源
    type: com.alibaba.druid.pool.DruidDataSource
    driver-class-name: com.mysql.jdbc.Driver
    url: jdbc:mysql://localhost:3306/数据库名?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8
    username: root
    password: root
    filters: stat
    maxActive: 20
    initialSize: 1
    maxWait: 60000
    minIdle: 1
    timeBetweenEvictionRunsMillis: 60000
    minEvictableIdleTimeMillis: 300000
    validationQuery: select 1 FROM DUAL
    testWhileIdle: true
    testOnBorrow: false
    testOnReturn: false
    poolPreparedStatements: true
    maxOpenPreparedStatements: 20

#mybatis
#请注意,在旧版MybatisPlus中,这里使用的mybatis-plus。但新版已经改正了,继续使用会出错,启动不理。所以使用mybatis即可
mybatis:
  #Mapper文件所在地址
  mapper-locations: classpath*:/mapper/**Mapper.xml
  #实体扫描,多个package用逗号或者分号分隔-实体类所在路径
  typeAliasesPackage: com.www.manager.model
  global-config:
  #主键类型  0:"数据库ID自增", 1:"用户输入ID",2:"全局唯一ID (数字类型唯一ID)", 3:"全局唯一ID UUID";
  id-type: 3
  #字段策略 0:"忽略判断",1:"非 NULL 判断"),2:"非空判断"
  field-strategy: 2
  #驼峰下划线转换
  db-column-underline: true
  #刷新mapper 调试神器
  refresh-mapper: true
  #数据库大写下划线转换
  capital-mode: true
  #序列接口实现类配置
  #key-generator: com.baomidou.springboot.xxx
  #逻辑删除配置(下面3个配置)
  logic-delete-value: 0
  logic-not-delete-value: 1
  #自定义SQL注入器
  #sql-injector: com.baomidou.mybatisplus.mapper.LogicSqlInjector
  #自定义填充策略接口实现
  #meta-object-handler: com.baomidou.springboot.xxx
  configuration:
  map-underscore-to-camel-case: true
  cache-enabled: false

#注入到注册中心
eureka:
  instance:
    preferIpAddress: true
    #这样写eureka服务注册中心会显示本机ip+端口号
    instanceId: ${spring.cloud.client.ipAddress}:${server.port}
    #这样写eureka服务注册中心会显示项目名和端口号
    #instanceId: ${spring.application.name}:${server.port}
  client:
    register-with-eureka: false
    fetch-registry: false
    service-url:
      defaultZone: http://localhost:8888/eureka/

3、为了方便不手动建立Controller-Service-Model-Mapper这些,建议可以使用MbatisPlus提供的代码生成器

3.1、POM文件引入:


        
            org.freemarker
            freemarker
            2.3.28
        

3.2、建立生成类:CodeGenerator。名字随意,我用的是这个

/**
 * 代码生成器
 */
public class CodeGenerator {
    /**
     * 

* 读取控制台内容 *

*/ 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.isNotEmpty(ipt)) { return ipt; } } throw new MybatisPlusException("请输入正确的" + tip + "!"); } public static void main(String[] args) { //在这里写需要生成的表名 String modelName = "sys_account"; // 代码生成器 AutoGenerator mpg = new AutoGenerator(); // 全局配置 GlobalConfig gc = new GlobalConfig(); //生成地址 String projectPath = "F:\\代码生成器"; gc.setOutputDir(projectPath + "/src/main/java"); gc.setAuthor("Neal"); gc.setOpen(false); mpg.setGlobalConfig(gc); // 数据源配置 DataSourceConfig dsc = new DataSourceConfig(); dsc.setUrl("jdbc:mysql://localhost:3306/数据库名?useUnicode=true&useSSL=false&characterEncoding=utf8"); // dsc.setSchemaName("public"); dsc.setDriverName("com.mysql.cj.jdbc.Driver"); dsc.setUsername("root"); dsc.setPassword("root"); mpg.setDataSource(dsc); // 包配置 PackageConfig pc = new PackageConfig(); //pc.setModuleName(scanner("模块名")); pc.setModuleName(modelName); pc.setParent("com.baomidou.ant"); 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 focList = new ArrayList(); // 自定义配置会被优先输出 focList.add(new FileOutConfig(templatePath) { @Override public String outputFile(TableInfo tableInfo) { // 自定义输出文件名 return projectPath + "/src/main/resources/mapper/" + pc.getModuleName() + "/" + tableInfo.getEntityName() + "Mapper" + StringPool.DOT_XML; } }); cfg.setFileOutConfigList(focList); mpg.setCfg(cfg); // 配置模板 TemplateConfig templateConfig = new TemplateConfig(); // 配置自定义输出模板 // templateConfig.setEntity(); // 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.setSuperEntityClass("com.baomidou.ant.common.BaseEntity"); strategy.setEntityLombokModel(true); strategy.setRestControllerStyle(true); strategy.setSuperControllerClass("com.baomidou.ant.common.BaseController"); strategy.setInclude(modelName); strategy.setSuperEntityColumns("id"); strategy.setControllerMappingHyphenStyle(true); strategy.setTablePrefix(pc.getModuleName() + "_"); mpg.setStrategy(strategy); mpg.setTemplateEngine(new FreemarkerTemplateEngine()); mpg.execute(); } }

执行上述的代码即可生成文件。将生成的文件放入到项目中即可。

注意事项即如果需要生成唯一ID。实体类中的ID增加注解

IdType中有多种选择。我这里使用的是UUID。自行选择即可。

在补充一点:Mapper接口中最好添加:@Mapper  注解。使用代码生成器是不带注解的。

到此就集成完成了。

10、补充问题:

10.1、报错现象:

Failed to bind properties under 'mybatis-plus.configuration' to com.baomidou.mybatisplus.core.MybatisConfiguration:

Springboot-2.0.6.RELEASE版本集成Mybatis-plus及Mysql_第3张图片

原因是因为,老版的MyabtisPlus版本配置yml文件时

老版本需要使用:mybatis-plus。所以报错。而新版本是直接使用mybatis即可

Springboot-2.0.6.RELEASE版本集成Mybatis-plus及Mysql_第4张图片

Springboot-2.0.6.RELEASE版本集成Mybatis-plus及Mysql_第5张图片

10.2、补上一个阿里云网页可访问的Maven仓库,可以用来查看仓库中存在哪些jar包

http://maven.aliyun.com/mvn/view

你可能感兴趣的:(Springboot)