115的资源怎么找

115的资源怎么找,第1张

115的资源怎么找

欢迎薇(简称 R115RR)是一个 的增强工具,在 的基础上只做增强不做改变,为简化开发、提高效率而生。
1.1.特性无侵入:只做增强不做改变,引入它不会对现有工程产生影响,如丝般顺滑损耗小:启动即会自动注入基本 CURD,性能基本无损耗,直接面向对象 *** 作强大的 CRUD *** 作:内置通用 Mapper、通用 Service,仅仅通过少量配置即可实现单表大部分 CRUD *** 作,更有强大的条件构造器,满足各类使用需求支持 Lambda 形式调用:通过 Lambda 表达式,方便的编写各类查询条件,无需再担心字段写错支持主键自动生成:支持多达 4 种主键策略(内含分布式唯一 ID 生成器 - Sequence),可自由配置,完美解决主键问题支持 ActiveRecord 模式:支持 ActiveRecord 形式调用,实体类只需继承 Model 类即可进行强大的 CRUD *** 作支持自定义全局通用 *** 作:支持全局通用方法注入( Write once, use anywhere )内置代码生成器:采用代码或者 Maven 插件可快速生成 Mapper 、 Model 、 Service 、 Controller 层代码,支持模板引擎,更有超多自定义配置等您来使用内置分页插件:基于 MyBatis 物理分页,开发者无需关心具体 *** 作,配置好插件之后,写分页等同于普通 List 查询分页插件支持多种数据库:支持 MySQL、MariaDB、Oracle、DB2、H2、HSQL、SQLite、Postgre、SQLServer 等多种数据库内置性能分析插件:可输出 SQL 语句以及其执行时间,建议开发测试时启用该功能,能快速揪出慢查询内置全局拦截插件:提供全表 delete 、 update *** 作智能分析阻断,也可自定义拦截规则,预防误 *** 作1.2.支持数据库任何能使用 mybatis 进行 CRUD, 并且支持标准 SQL 的数据库,具体支持情况如下,如果不在下列表查看分页部分教程 PR 您的支持。mysql,oracle,db2,h2,hsql,sqlite,postgresql,sqlserver,Phoenix,Gauss ,clickhouse,Sybase,Oceanbase,Firebird,cubrid,goldilocks,csiidb达梦数据库,虚谷数据库,人大金仓数据库,南大通用(华库)数据库,南大通用数据库,神通数据库,瀚高数据库1.3.框架结构image-202111101506434962.快速上手2.1.pom.xml导入MyBatis Plus依赖 com.baomidou mybatis-plus-boot-starter Latest Version2.2.在application.yml中配置数据源# 配置数据源spring: datasource: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://localhost:3306/wyl? useSSL=false&useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT%2B8 username: root password: 123456# 配置日志,输出更详细日志信息mybatis-plus: configuration: log-impl: org.apache.ibatis.logging.stdout.StdOutImpl2.3.根据数据库表创建实体类@Data@AllArgsConstructor@NoArgsConstructorpublic class User { private Long id; private String name; private Integer age; private String email;}2.4.创建Mapper接口//在对应的mapper上面继承基本的接口baseMapper@ResponseBody //代表持久层public interface UserMapper extends baseMapper { //所有的CRUD *** 作都已经编写完成了 //你不需要像以前的配置一大堆文件了}2.5.测试启动类需要加 @MapperScan(“mapper所在的包”),否则无法加载mapper bean@SpringBootTestclass MybatisPlusApplicationTests { //继承了baseMapper,所有的方法都来自父类 //我们也可以编写自己的扩展方法 @Autowired private UserMapper userMapper; @Test void contextLoads() { //参数是一个Wrapper,条件构造器,这里我们先不用 null //查询全部用户 List users = userMapper.selectList(null); users.forEach(System.out::println); }}那么我的sql 谁写的,方法又去哪了,其实都是mybatis plus。3.配置日志我们所有的sql现在是不可见的,我们希望知道他是怎么执行的,所以我们必须要看日志!# 配置日志mybatis-plus.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl4.CRUD4.1.Service CRUD 接口4.1.1.Save// 插入一条记录(选择字段,策略插入)boolean save(T entity);// 插入(批量)boolean saveBatch(Collection entityList);// 插入(批量)boolean saveBatch(Collection entityList, int batchSize);4.1.2.SaveOrUpdate// TableId 注解存在更新记录,否插入一条记录boolean saveOrUpdate(T entity);// 根据updateWrapper尝试更新,否继续执行saveOrUpdate(T)方法boolean saveOrUpdate(T entity, Wrapper updateWrapper);// 批量修改插入boolean saveOrUpdateBatch(Collection entityList);// 批量修改插入boolean saveOrUpdateBatch(Collection entityList, int batchSize);4.1.3.Remove// 根据 entity 条件,删除记录boolean remove(Wrapper queryWrapper);// 根据 ID 删除boolean removeById(Serializable id);// 根据 columnMap 条件,删除记录boolean removeByMap(Map columnMap);// 删除(根据ID 批量删除)boolean removeByIds(Collection idList);4.1.4.Update// 根据 UpdateWrapper 条件,更新记录 需要设置sqlsetboolean update(Wrapper updateWrapper);// 根据 whereWrapper 条件,更新记录boolean update(T updateEntity, Wrapper whereWrapper);// 根据 ID 选择修改boolean updateById(T entity);// 根据ID 批量更新boolean updateBatchById(Collection entityList);// 根据ID 批量更新boolean updateBatchById(Collection entityList, int batchSize);4.1.5.Get// 根据 ID 查询T getById(Serializable id);// 根据 Wrapper,查询一条记录。结果集,如果是多个会抛出异常,随机取一条加上限制条件 wrapper.last(“LIMIT 1”)T getOne(Wrapper queryWrapper);// 根据 Wrapper,查询一条记录T getOne(Wrapper queryWrapper, boolean throwEx);// 根据 Wrapper,查询一条记录Map getMap(Wrapper queryWrapper);// 根据 Wrapper,查询一条记录 V getObj(Wrapper queryWrapper, Function mapper);4.1.6.List// 查询所有List list();// 查询列表List list(Wrapper queryWrapper);// 查询(根据ID 批量查询)Collection listByIds(Collection idList);// 查询(根据 columnMap 条件)Collection listByMap(Map columnMap);// 查询所有列表List> listMaps();// 查询列表List> listMaps(Wrapper queryWrapper);// 查询全部记录List listObjs();// 查询全部记录 List listObjs(Function mapper);// 根据 Wrapper 条件,查询全部记录List listObjs(Wrapper queryWrapper);// 根据 Wrapper 条件,查询全部记录 List listObjs(Wrapper queryWrapper, Function mapper);4.1.7.Page// 无条件分页查询IPage page(IPage page);// 条件分页查询IPage page(IPage page, Wrapper queryWrapper);// 无条件分页查询IPage> pageMaps(IPage page);// 条件分页查询IPage> pageMaps(IPage page, Wrapper queryWrapper);4.1.8.Count// 查询总记录数int count();// 根据 Wrapper 条件,查询总记录数int count(Wrapper queryWrapper);4.1.9.Chainquery// 链式查询 普通QueryChainWrapper query();// 链式查询 lambda 式。注意:不支持 KotlinLambdaQueryChainWrapper lambdaQuery(); // 示例:query().eq(“column”, value).one();lambdaQuery().eq(Entity::getId, value).list();update// 链式更改 普通UpdateChainWrapper update();// 链式更改 lambda 式。注意:不支持 Kotlin LambdaUpdateChainWrapper lambdaUpdate();// 示例:update().eq(“column”, value).remove();lambdaUpdate().eq(Entity::getId, value).update(entity);4.2.Mapper CRUD 接口4.2.1.Insert// 插入一条记录int insert(T entity);4.2.2.Delete// 根据 entity 条件,删除记录int delete(@Param(Constants.WRAPPER) Wrapper wrapper);// 删除(根据ID 批量删除)int deleteBatchIds(@Param(Constants.COLLECTION) Collection idList);// 根据 ID 删除int deleteById(Serializable id);// 根据 columnMap 条件,删除记录int deleteByMap(@Param(Constants.COLUMN_MAP) Map columnMap);4.2.3.Update// 根据 whereWrapper 条件,更新记录int update(@Param(Constants.ENTITY) T updateEntity, @Param(Constants.WRAPPER) Wrapper whereWrapper);// 根据 ID 修改int updateById(@Param(Constants.ENTITY) T entity);4.2.4.Select// 根据 ID 查询T selectById(Serializable id);// 根据 entity 条件,查询一条记录T selectOne(@Param(Constants.WRAPPER) Wrapper queryWrapper);// 查询(根据ID 批量查询)List selectBatchIds(@Param(Constants.COLLECTION) Collection idList);// 根据 entity 条件,查询全部记录List selectList(@Param(Constants.WRAPPER) Wrapper queryWrapper);// 查询(根据 columnMap 条件)List selectByMap(@Param(Constants.COLUMN_MAP) Map columnMap);// 根据 Wrapper 条件,查询全部记录List> selectMaps(@Param(Constants.WRAPPER) Wrapper queryWrapper);// 根据 Wrapper 条件,查询全部记录。注意: 只返回第一个字段的值List selectObjs(@Param(Constants.WRAPPER) Wrapper queryWrapper);// 根据 entity 条件,查询全部记录(并翻页)IPage selectPage(IPage page, @Param(Constants.WRAPPER) Wrapper queryWrapper);// 根据 Wrapper 条件,查询全部记录(并翻页)IPage> selectMapsPage(IPage page, @Param(Constants.WRAPPER) Wrapper queryWrapper);// 根据 Wrapper 条件,查询总记录数Integer selectCount(@Param(Constants.WRAPPER) Wrapper queryWrapper);案例List userList1 = user.selectList( new EntityWrapper().eq(“name”, “王延领”));分页// 分页查询 10 条姓名为‘wyl’的用户记录List userList = user.selectPage( new Page(1, 10), new EntityWrapper().eq(“name”, “wyl”)).getRecords();结合// 分页查询 10 条姓名为‘wyl’、性别为男,且年龄在18至50之间的用户记录List userList = userMapper.selectPage( new Page(1, 10), new EntityWrapper().eq(“name”, “wyl”) .eq(“sex”, 0) .between(“age”, “18”, “50”));4.3.mapper 层 选装件AlwaysUpdateSomeColumnByIdint alwaysUpdateSomeColumnById(T entity);insertBatchSomeColumnint insertBatchSomeColumn(List entityList);logicDeleteByIdWithFillint logicDeleteByIdWithFill(T entity);4.4.条件构造器十分重要:Wappper我们写一些复杂的SQL就可以使用他来替代!1、测试一,记住查看输出的SQL进行分析@Testvoid contextLoads() { //查询name不为空的用户,并且邮箱不为空的用户,年龄大于12 QueryWrapper wrapper = new QueryWrapper<>(); wrapper.isNotNull(“name”) .isNotNull(“email”) .ge(“age”, 12); userMapper.selectList(wrapper).forEach(System.out::println); //和我们刚刚学习的map对比一下}2、测试二,记住查看输出的SQL进行分析@Testvoid test2(){ //查询名字Chanv QueryWrapper wrapper = new QueryWrapper<>(); wrapper.eq(“name”, “Chanv”); User user = userMapper.selectOne(wrapper); System.out.println(user);}3、测试三@Testvoid test3(){ //查询年龄在19到30岁之间的用户 QueryWrapper wrapper = new QueryWrapper<>(); wrapper.between(“age”, 19, 30); //区间 Integer count = userMapper.selectCount(wrapper); System.out.println(count);}4、测试四,记住查看输出的SQL进行分析//模糊查询@Testvoid test4(){ //查询年龄在19到30岁之间的用户 QueryWrapper wrapper = new QueryWrapper<>(); //左和右 wrapper.notLike(“name”, “b”) .likeRight(“email”, “t”); List> maps = userMapper.selectMaps(wrapper); maps.forEach(System.out::println);}5、测试五@Testvoid test5(){ QueryWrapper wrapper = new QueryWrapper<>(); //id 在子查询中查出来 wrapper.inSql(“id”, “select id from user where id < 3”); List objects = userMapper.selectObjs(wrapper); objects.forEach(System.out::println);}6、测试六@Testvoid test6(){ QueryWrapper wrapper = new QueryWrapper<>(); //通过id进行排序 wrapper.orderByDesc(“id”); List users = userMapper.selectList(wrapper); users.forEach(System.out::println);}5.代码生成器dao、pojo、service、controller都给我自己去编写完成!AutoGenerator 是 MyBatis-Plus 的代码生成器,通过 AutoGenerator 可以快速生成 Entity、Mapper、Mapper XML、Service、Controller 等各个模块的代码,极大的提升了开发效率。5.1.导入依赖 com.baomidou mybatis-plus-generator 3.3.1.tmp org.apache.velocity velocity 1.75.2、启动类,任意一个main、@Test方法都行package com.wyl.mybatisplus;import com.baomidou.mybatisplus.annotation.DbType;import com.baomidou.mybatisplus.generator.AutoGenerator;import com.baomidou.mybatisplus.generator.config.DataSourceConfig;import com.baomidou.mybatisplus.generator.config.GlobalConfig;import com.baomidou.mybatisplus.generator.config.PackageConfig;import com.baomidou.mybatisplus.generator.config.StrategyConfig;import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy;public class Code { public static void main(String[] args) { //需要构建一个 代码自动生成器 对象 // 代码生成器 AutoGenerator mpg = new AutoGenerator(); //配置策略 //1、全局配置 GlobalConfig gc = new GlobalConfig(); String projectPath = System.getProperty(“user.dir”); gc.setOutputDir(projectPath + “/src/main/java”); gc.setAuthor(“ChanV”); gc.setOpen(false); gc.setFileOverride(false); //是否覆盖 gc.setServiceName("%sService"); //去Service的I前缀 gc.setIdType(IdType.ID_WORKER); gc.setDateType(DateType.ONLY_DATE); gc.setSwagger2(true); mpg.setGlobalConfig(gc); //2、设置数据源 DataSourceConfig dsc = new DataSourceConfig(); dsc.setUrl(“jdbc:mysql://localhost:3306/mybatis-plus?useSSL=false&useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT%2B8”); dsc.setDriverName(“com.mysql.cj.jdbc.Driver”); dsc.setUsername(“root”); dsc.setPassword(“root”); dsc.setDbType(DbType.MYSQL); mpg.setDataSource(dsc); //3、包的配置 PackageConfig pc = new PackageConfig(); pc.setModuleName(“blog”); pc.setParent(“com.chanv”); pc.setEntity(“pojo”); pc.setMapper(“mapper”); pc.setService(“service”); pc.setController(“controller”); mpg.setPackageInfo(pc); //4、策略配置 StrategyConfig strategy = new StrategyConfig(); strategy.setInclude(“user”); //设置要映射的表名 strategy.setNaming(NamingStrategy.underline_to_camel); strategy.setColumnNaming(NamingStrategy.underline_to_camel); strategy.setEntityLombokModel(true); //自动lombok strategy.setLogicDeleteFieldName(“deleted”); //自动填充配置 TableFill createTime = new TableFill(“create_time”, FieldFill.INSERT); TableFill updateTime = new TableFill(“update_time”, FieldFill.UPDATE); ArrayList tableFills = new ArrayList<>(); tableFills.add(createTime); tableFills.add(updateTime); strategy.setTableFillList(tableFills); //乐观锁 strategy.setVersionFieldName(“version”); strategy.setRestControllerStyle(true); strategy.setControllerMappingHyphenStyle(true); //localhost:8080/hello_id_2 mpg.setStrategy(strategy); mpg.execute(); //执行代码构造器 }}以上两步即可完成生成代码功能!启动类上扫描@SpringBootApplication // 启动类@MapperScan(value = {“com.wyl.mybatisplus.generator.mapper”}) // 扫描mapperpublic class MybatisplusApplication { public static void main(String[] args) { SpringApplication.run(MybatisplusApplication.class, args); }}测试类上扫描@SpringBootTest@MapperScan(value = {“com.wyl.mybatisplus.generator.mapper”}) // @MapperScan(“mapper的包位置”)class UserServiceTest { @Autowired private UserMapper mapper; @Test public void test(){ mapper.selectList(null).forEach(System.out::println); }}5.3.测试MVC5.3.1.后端:controller.javapackage com.wyl.mybatisplus.generator.controller;import com.wyl.mybatisplus.generator.service.UserService;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.stereotype.Controller;import org.springframework.web.servlet.ModelAndView;@Controller@RequestMapping("/generator/user")public class UserController { @Autowired private UserService userService; @GetMapping("/success") public ModelAndView index(){ ModelAndView mav = new ModelAndView(); mav.setViewName(“success”); mav.addObject(“list”,userService.list()); return mav; }}5.3.2.前端:html记得放在templates下哦index.html

Index Page… 展示数据succuss.html Success Page Success Page… 编号用户名年龄前端用到thymeleaf模板引擎,需要配置application.ymlspring:# 视图解析 thymeleaf: prefix: classpath:/templates/ suffix: .html6.MybatisX 快速开发插件MybatisX 是一款基于 IDEA 的快速开发插件,为效率而生。功能XML跳转跳转生成代码(需先在idea配置Database配置数据源)生成代码重置模板生成代码JPA提示生成新增生成新增生成查询生成查询生成修改生成修改生成删除生成删除8.乐观锁在面试过程中,我们经常会被问到乐观锁,悲观锁!这个其实非常简单!原子引用!乐观锁:顾名思义十分乐观,他总是认为不会出现问题,无论干什么不去上锁!如果出现了问题,再次更新值测试!悲观锁:顾名思义十分悲观,他总是任务总是出现问题,无论干什么都会上锁!再去 *** 作!我们这里主要讲解,乐观锁机制!乐观锁实现方式:取出记录,获取当前version更新时,带上这个version执行更新时,set version = new version where version = oldversion如果version不对,就更新失败乐观锁:1、先查询,获得版本号 version = 1-- Aupdate user set name = “wyl”, version = version + 1where id = 2 and version = 1-- B 线程抢先完成,这个时候 version = 2,会导致 A 修改失败!update user set name = “wjm”, version = version + 1where id = 2 and version = 1测试一下MP的乐观锁插件1、给数据库中增加version字段!//测试乐观锁成功!@Testpublic void testOptimisticLocker(){ //1、查询用户信息 User user = userMapper.selectById(1330080433207046145L); //2、修改用户信息 user.setName(“ChanV”); user.setEmail(“1277077741@qq.com”); //3、执行更新 *** 作 userMapper.updateById(user);}//测试乐观锁失败!多线程下@Testpublic void testOptimisticLocker2(){ //线程1 User user = userMapper.selectById(5L); user.setName(“ChanV111”); user.setEmail(“1277077741@qq.com”); //模拟另一个线程执行了插队 *** 作 User user2 = userMapper.selectById(5L); user2.setName(“ChanV222”); user2.setEmail(“1277077741@qq.com”); userMapper.updateById(user2); //自旋锁多次尝试提交 userMapper.updateById(user); //如果没有乐观锁就会覆盖队线程的值}9.全局策略配置:通过上面的小案例我们可以发现,实体类需要加@TableName注解指定数据库表名,通过@TableId注解指定id的增长策略。实体类少倒也无所谓,实体类一多的话也麻烦。所以可以在spring-dao.xml的文件中进行全局策略配置。 这里配置了还没用,还需要在sqlSessionFactory中注入配置才会生效。如下: 如此一来,实体类中的@TableName注解和@TableId注解就可以去掉了。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5438480.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存