Springboot整合mybatis-plus.

1.springboot整合定时器

定时器的作用:是在指定的时间,执行相应的代码

引入定时器的依赖


        org.springframework.boot
        spring-boot-starter-quartz

编辑定时任务代码

@Component // 该类交于spring容器来管理
public class Quartz {

    //任务代码cron:定义定时任务的规则,spring不识别
    @Scheduled(cron = "0/1 * * * * ?")
    public void test01(){
        System.out.println("业务代码");
    }
}

在主类上加入开启定时任务的注解

@SpringBootApplication
@MapperScan(basePackages = "com.wsh.dao") //为指定的包下的接口生成代理实现类
@EnableSwagger2 //开启swagger注解
@EnableScheduling //开启定时任务注解
public class Lesson0721SpringbootApplication {

    public static void main(String[] args) {
        SpringApplication.run(Lesson0721SpringbootApplication.class, args);
    }

}

2.Mybatis-Plus

        MyBatis 是一款优秀的持久层框架,它支持定制化 SQL、存储过程以及高级映射。MyBatis 避免了几乎所有的 JDBC 代码和手动设置参数以及获取结果集。MyBatis 可以使用简单的 XML 或注解来配置和映射原生信息,将接口和 Java 的 POJOs(Plain Ordinary Java Object,普通的 Java对象)映射成数据库中的记录。

2.1Mybatis-Plus具有哪些特点:

1.简单易学:本身就很小且简单。没有任何第三方依赖,最简单安装只要两个jar文件+配置几个sql映射文件。易于学习,易于使用。通过文档和源代码,可以比较完全的掌握它的设计思路和实现。

2.灵活:mybatis不会对应用程序或者数据库的现有设计强加任何影响。 sql写在xml里,便于统一管理和优化。通过sql语句可以满足操作数据库的所有需求。

3.解除sql与程序代码的耦合:通过提供DAO层,将业务逻辑和数据访问逻辑分离,使系统的设计更清晰,更易维护,更易单元测试。sql和代码的分离,提高了可维护性。

4.提供映射标签,支持对象与数据库的orm字段关系映射。

5.提供对象关系映射标签,支持对象关系组建维护。

6.提供xml标签,支持编写动态sql。

2.2使用Mybatis-Plus

引入Mybatis-Plus依赖jar包


       
            com.baomidou
            mybatis-plus-boot-starter
            3.5.1
       

创建一个实体类和数据库表,数据库的值和实体类的对应着。

@Data
@Component //该类对象的创建和销毁都有spring容器来管理
@ConfigurationProperties(prefix = "student") //读取springboot中的配置
public class Student {
    private String name;

    private Integer age;

    private String[] hobby;

    private Map map;
}

 创建一个dao包,里面有一个接口。

@Component
public interface DeptMapper {

}

根据id查询数据库中的一条数据

@Test
   //查询id为2的数据
   public void test02(){
       System.out.println(deptMapper.findById(2));
   }

3.关于Mybatis-Plus的crud

3.1Mybatis-Plus的增加操作

@Test
   //添加员工表中的数据
   public void testInsert(){
       Dept dept = new Dept();
       dept.setName("马鸡");
       dept.setAddress("斯里兰卡");
       Integer insert = deptMapper.insert(dept);
       System.out.println(insert);
   }

3.2Mybatis-Plus的删除操作

@Test
   //根据id删除部门表中员工的一条数据
   public void testDelete(){
       Integer delete = deptMapper.delete(2);
       System.out.println(delete);
   }

3.3Mybatis-Plus的修改操作

@Test
   //根据id修改部门表中的数据
   public void testUpdate(){
       Dept dept = new Dept();
       dept.setId(4);
       dept.setName("李先生");
       dept.setAddress("山东");
       Integer update = deptMapper.update(dept);
       System.out.println(update);
   }

 3.4Mybatis-Plus的查询所有数据的操作

@Test
   //查询部门表中所有数据
   public void testFindAll(){
       List list = deptMapper.findAll();
       System.out.println(list);
   }

3.5Mybatis-Plus的根据id查询数据的操作

@Test
   //根据id查询部门表中的一条数据
   public void testFindById(){
       Dept byId = deptMapper.findById(11);
       System.out.println(byId);
   }

3.6Mybatis-Plus的分页查询操作

@Test
    //查询所有并且分页
    public void test03(){
        PageHelper.startPage(1,3);
        List list = deptMapper.findAll();
        PageInfo pageInfo = new PageInfo<>(list);
        System.out.println("当前页码:"+pageInfo.getPageNum());
        System.out.println("当前总页码:"+pageInfo.getPages());
        System.out.println("总条数:"+pageInfo.getTotal());
        System.out.println("当前页码的纪录:"+pageInfo.getList());
    }

3.7Mybatis-Plus的联表查询操作

@Test
    //联表查询
    public void testSelect(){
        // @Param("ew") Wrapper queryWrapper
        Page  page=new Page<>(1,3);
        QueryWrapper wrapper=new QueryWrapper<>();
        wrapper.eq("name","king");
        IPage users=userMapper.selectUserWithDept(page,wrapper);
        System.out.println("总页码:"+page.getPages());
        System.out.println("总条数:"+page.getTotal());
        System.out.println("当前页记录:"+page.getRecords());
    }

sql语句 


    
    
        
    
  
  

4.Mybatis-Plus的代码生成器

引入依赖jar包


        com.baomidou
        mybatis-plus-generator
        3.4.1


        org.apache.velocity
        velocity-engine-core
        2.3



        org.freemarker
        freemarker
        2.3.30
// 演示例子,执行 main 方法控制台输入模块表名回车自动生成对应项目目录中
public class CodeGenerator {

    /**
     * 

* 读取控制台内容 *

*/ public static void main(String[] args) { // 代码生成器 AutoGenerator mpg = new AutoGenerator(); // 全局配置 GlobalConfig gc = new GlobalConfig(); gc.setOutputDir("./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/mp?serverTimezone=Asia/Shanghai"); // dsc.setSchemaName("public"); dsc.setDriverName("com.mysql.cj.jdbc.Driver"); dsc.setUsername("账号"); dsc.setPassword("密码"); mpg.setDataSource(dsc); // 包配置 PackageConfig pc = new PackageConfig(); pc.setModuleName("system"); pc.setParent("com.wsh"); 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) { // 自定义输出文件名 , 如果你 Entity 设置了前后缀、此处注意 xml 的名称会跟着发生变化!! return "./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.setControllerMappingHyphenStyle(true); mpg.setStrategy(strategy); mpg.setTemplateEngine(new FreemarkerTemplateEngine()); mpg.execute(); }

你可能感兴趣的:(spring,boot,mybatis,java)