当前位置:   article > 正文

MyBatisPlus又在搞事了!一个依赖轻松搞定权限问题!堪称神器_mybatisplus执行ddl

mybatisplus执行ddl

前言:

今天介绍一个 MyBatis - Plus 官方发布的神器:mybatis-mate 为 mp 企业级模块,支持分库分表,数据审计、数据敏感词过滤(AC算法),字段加密,字典回写(数据绑定),数据权限,表结构自动生成 SQL 维护等,旨在更敏捷优雅处理数据。

1. 主要功能

字典绑定

字段加密

数据脱敏

表结构动态维护

数据审计记录

数据范围(数据权限)

数据库分库分表、动态数据源、读写分离、数- - 据库健康检查自动切换。

2.使用

2.1 依赖导入

Spring Boot 引入自动依赖注解包

<dependency><groupId>com.baomidou</groupId><artifactId>mybatis-mate-starter</artifactId><version>1.0.8</version></dependency>

注解(实体分包使用)

<dependency><groupId>com.baomidou</groupId><artifactId>mybatis-mate-annotation</artifactId><version>1.0.8</version></dependency>

2.2 字段数据绑定(字典回写)

例如 user_sex 类型 sex 字典结果映射到 sexText 属性

  1. @FieldDict(type = "user_sex", target = "sexText")
  2. private Integer sex;
  3. privateString sexText;

实现 IDataDict 接口提供字典数据源,注入到 Spring 容器即可。

  1. @Componentpublicclass DataDict implements IDataDict {
  2. /**
  3. * 从数据库或缓存中获取
  4. */private Map<String, String> SEX_MAP = new ConcurrentHashMap<String, String>() {{
  5. put("0", "女");
  6. put("1", "男");
  7. }};
  8. @OverridepublicString getNameByCode(FieldDict fieldDict, String code) {
  9. System.err.println("字段类型:" + fieldDict.type() + ",编码:" + code);
  10. return SEX_MAP.get(code);
  11. }
  12. }

2.3 字段加密

属性 @FieldEncrypt 注解即可加密存储,会自动解密查询结果,支持全局配置加密密钥算法,及注解密钥算法,可以实现 IEncryptor 注入自定义算法。

@FieldEncrypt(algorithm = Algorithm.PBEWithMD5AndDES)private String password;

2.4 字段脱敏

属性 @FieldSensitive 注解即可自动按照预设策略对源数据进行脱敏处理,默认 SensitiveType 内置 9 种常用脱敏策略。

例如:中文名、银行卡账号、手机号码等 脱敏策略。也可以自定义策略如下:

  1. @FieldSensitive(type = "testStrategy")
  2. privateString username;
  3. @FieldSensitive(type = SensitiveType.mobile)
  4. privateString mobile;

自定义脱敏策略 testStrategy 添加到默认策略中注入 Spring 容器即可。

  1. @ConfigurationpublicclassSensitiveStrategyConfig{
  2. /**
  3. * 注入脱敏策略
  4. */@Beanpublic ISensitiveStrategy sensitiveStrategy(){
  5. // 自定义 testStrategy 类型脱敏处理returnnew SensitiveStrategy().addStrategy("testStrategy", t -> t + "***test***");
  6. }
  7. }

例如:文章敏感词过滤

  1. /**
  2. * 演示文章敏感词过滤
  3. */
  4. @RestController
  5. public class ArticleController {
  6. @Autowired
  7. private SensitiveWordsMapper sensitiveWordsMapper;
  8. // 测试访问下面地址观察请求地址、界面返回数据及控制台( 普通参数 )
  9. // 无敏感词 http://localhost:8080/info?content=tom&see=1&age=18
  10. // 英文敏感词 http://localhost:8080/info?content=my%20content%20is%20tomcat&see=1&age=18
  11. // 汉字敏感词 http://localhost:8080/info?content=%E7%8E%8B%E5%AE%89%E7%9F%B3%E5%94%90%E5%AE%8B%E5%85%AB%E5%A4%A7%E5%AE%B6&see=1
  12. // 多个敏感词 http://localhost:8080/info?content=%E7%8E%8B%E5%AE%89%E7%9F%B3%E6%9C%89%E4%B8%80%E5%8F%AA%E7%8C%ABtomcat%E6%B1%A4%E5%A7%86%E5%87%AF%E7%89%B9&see=1&size=6
  13. // 插入一个字变成非敏感词 http://localhost:8080/info?content=%E7%8E%8B%E7%8C%AB%E5%AE%89%E7%9F%B3%E6%9C%89%E4%B8%80%E5%8F%AA%E7%8C%ABtomcat%E6%B1%A4%E5%A7%86%E5%87%AF%E7%89%B9&see=1&size=6
  14. @GetMapping("/info")
  15. public String info(Article article) throws Exception {
  16. return ParamsConfig.toJson(article);
  17. }
  18. // 添加一个敏感词然后再去观察是否生效 http://localhost:8080/add
  19. // 观察【猫】这个词被过滤了 http://localhost:8080/info?content=%E7%8E%8B%E5%AE%89%E7%9F%B3%E6%9C%89%E4%B8%80%E5%8F%AA%E7%8C%ABtomcat%E6%B1%A4%E5%A7%86%E5%87%AF%E7%89%B9&see=1&size=6
  20. // 嵌套敏感词处理 http://localhost:8080/info?content=%E7%8E%8B%E7%8C%AB%E5%AE%89%E7%9F%B3%E6%9C%89%E4%B8%80%E5%8F%AA%E7%8C%ABtomcat%E6%B1%A4%E5%A7%86%E5%87%AF%E7%89%B9&see=1&size=6
  21. // 多层嵌套敏感词 http://localhost:8080/info?content=%E7%8E%8B%E7%8E%8B%E7%8C%AB%E5%AE%89%E7%9F%B3%E5%AE%89%E7%9F%B3%E6%9C%89%E4%B8%80%E5%8F%AA%E7%8C%ABtomcat%E6%B1%A4%E5%A7%86%E5%87%AF%E7%89%B9&see=1&size=6
  22. @GetMapping("/add")
  23. public String add() throws Exception {
  24. Long id = 3L;
  25. if (null == sensitiveWordsMapper.selectById(id)) {
  26. System.err.println("插入一个敏感词:" + sensitiveWordsMapper.insert(new SensitiveWords(id, "猫")));
  27. // 插入一个敏感词,刷新算法引擎敏感词
  28. SensitiveWordsProcessor.reloadSensitiveWords();
  29. }
  30. return"ok";
  31. }
  32. // 测试访问下面地址观察控制台( 请求json参数 )
  33. // idea 执行 resources 目录 TestJson.http 文件测试
  34. @PostMapping("/json")
  35. public String json(@RequestBody Article article) throws Exception {
  36. return ParamsConfig.toJson(article);
  37. }
  38. }

2.5 DDL 数据结构自动维护

解决升级表结构初始化,版本发布更新 SQL 维护问题,目前支持 MySql、PostgreSQL。

  1. @ComponentpublicclassPostgresDdlimplementsIDdl{
  2. /**
  3. * 执行 SQL 脚本方式
  4. */@Overridepublic List<String> getSqlFiles(){
  5. return Arrays.asList(
  6. // 内置包方式"db/tag-schema.sql",
  7. // 文件绝对路径方式"D:\\db\\tag-data.sql"
  8. );
  9. }
  10. }

不仅仅可以固定执行,也可以动态执行!!

  1. ddlScript.run(new StringReader("DELETEFROMuser;\n" +
  2. "INSERTINTOuser (id, username, password, sex, email) VALUES\n" +
  3. "(20, 'Duo', '123456', 0, 'Duo@baomidou.com');"));

它还支持多种数据源执行!!!

  1. @Component
  2. publicclassMysqlDdlimplementsIDdl {
  3. @Override
  4. publicvoidsharding(Consumer<IDdl> consumer) {
  5. // 多数据源指定,主库初始化从库自动同步
  6. String group = "mysql";
  7. ShardingGroupProperty sgp = ShardingKey.getDbGroupProperty(group);
  8. if (null != sgp) {
  9. // 主库
  10. sgp.getMasterKeys().forEach(key -> {
  11. ShardingKey.change(group + key);
  12. consumer.accept(this);
  13. });
  14. // 从库
  15. sgp.getSlaveKeys().forEach(key -> {
  16. ShardingKey.change(group + key);
  17. consumer.accept(this);
  18. });
  19. }
  20. }
  21. /**
  22. * 执行 SQL 脚本方式
  23. */
  24. @Override
  25. public List<String> getSqlFiles() {
  26. return Arrays.asList("db/user-mysql.sql");
  27. }
  28. }

2.6 动态多数据源主从自由切换

@Sharding 注解使数据源不限制随意使用切换,你可以在 mapper 层添加注解,按需求指哪打哪!!

  1. @Mapper@Sharding("mysql")
  2. public interface UserMapper extends BaseMapper<User> {
  3. @Sharding("postgres")
  4. Long selectByUsername(String username);
  5. }

你也可以自定义策略统一调兵遣将

  1. @ComponentpublicclassMyShardingStrategyextendsRandomShardingStrategy{
  2. /**
  3. * 决定切换数据源 key {@link ShardingDatasource}
  4. *
  5. * @param group 动态数据库组
  6. * @param invocation {@link Invocation}
  7. * @param sqlCommandType {@link SqlCommandType}
  8. */@OverridepublicvoiddetermineDatasourceKey(String group, Invocation invocation, SqlCommandType sqlCommandType){
  9. // 数据源组 group 自定义选择即可, keys 为数据源组内主从多节点,可随机选择或者自己控制this.changeDatabaseKey(group, sqlCommandType, keys -> chooseKey(keys, invocation));
  10. }
  11. }

可以开启主从策略,当然也是可以开启健康检查!具体配置:

mybatis-mate:sharding:health:true# 健康检测primary:mysql# 默认选择数据源datasource:mysql:# 数据库组-key:node1...-key:node2cluster:slave# 从库读写分离时候负责 sql 查询操作,主库 master 默认可以不写...postgres:-key:node1# 数据节点...

2.7 分布式事务日志打印

部分配置如下:

  1. /**
  2. * <p>
  3. * 性能分析拦截器,用于输出每条 SQL 语句及其执行时间
  4. * </p>
  5. */@Slf4j
  6. @Component@Intercepts({@Signature(type = StatementHandler.class, method= "query", args = {Statement.class, ResultHandler.class}),
  7. @Signature(type= StatementHandler.class, method= "update", args = {Statement.class}),
  8. @Signature(type= StatementHandler.class, method= "batch", args = {Statement.class})})
  9. publicclassPerformanceInterceptorimplementsInterceptor{
  10. /**
  11. * SQL 执行最大时长,超过自动停止运行,有助于发现问题。
  12. */privatelong maxTime = 0;
  13. /**
  14. * SQL 是否格式化
  15. */privateboolean format = false;
  16. /**
  17. * 是否写入日志文件<br>
  18. * true 写入日志文件,不阻断程序执行!<br>
  19. * 超过设定的最大执行时长异常提示!
  20. */privateboolean writeInLog = false;
  21. @Overridepublic Object intercept(Invocation invocation)throws Throwable {
  22. Statement statement;
  23. Object firstArg = invocation.getArgs()[0];
  24. if (Proxy.isProxyClass(firstArg.getClass())) {
  25. statement = (Statement) SystemMetaObject.forObject(firstArg).getValue("h.statement");
  26. } else {
  27. statement = (Statement) firstArg;
  28. }
  29. MetaObject stmtMetaObj = SystemMetaObject.forObject(statement);
  30. try {
  31. statement = (Statement) stmtMetaObj.getValue("stmt.statement");
  32. } catch (Exception e) {
  33. // do nothing
  34. }
  35. if (stmtMetaObj.hasGetter("delegate")) {//Hikaritry {
  36. statement = (Statement) stmtMetaObj.getValue("delegate");
  37. } catch (Exception e) {
  38. }
  39. }
  40. String originalSql = null;
  41. if (originalSql == null) {
  42. originalSql = statement.toString();
  43. }
  44. originalSql = originalSql.replaceAll("[\\s]+", " ");
  45. int index = indexOfSqlStart(originalSql);
  46. if (index > 0) {
  47. originalSql = originalSql.substring(index);
  48. }
  49. // 计算执行 SQL 耗时long start = SystemClock.now();
  50. Object result = invocation.proceed();
  51. long timing = SystemClock.now() - start;
  52. // 格式化 SQL 打印执行结果
  53. Object target = PluginUtils.realTarget(invocation.getTarget());
  54. MetaObject metaObject = SystemMetaObject.forObject(target);
  55. MappedStatement ms = (MappedStatement) metaObject.getValue("delegate.mappedStatement");
  56. StringBuilder formatSql = new StringBuilder();
  57. formatSql.append(" Time:").append(timing);
  58. formatSql.append(" ms - ID:").append(ms.getId());
  59. formatSql.append("\n Execute SQL:").append(sqlFormat(originalSql, format)).append("\n");
  60. if (this.isWriteInLog()) {
  61. if (this.getMaxTime() >= 1 && timing > this.getMaxTime()) {
  62. log.error(formatSql.toString());
  63. } else {
  64. log.debug(formatSql.toString());
  65. }
  66. } else {
  67. System.err.println(formatSql);
  68. if (this.getMaxTime() >= 1 && timing > this.getMaxTime()) {
  69. thrownew RuntimeException(" The SQL execution time is too large, please optimize ! ");
  70. }
  71. }
  72. return result;
  73. }
  74. @Overridepublic Object plugin(Object target){
  75. if (target instanceof StatementHandler) {
  76. return Plugin.wrap(target, this);
  77. }
  78. return target;
  79. }
  80. @OverridepublicvoidsetProperties(Properties prop){
  81. String maxTime = prop.getProperty("maxTime");
  82. String format = prop.getProperty("format");
  83. if (StringUtils.isNotEmpty(maxTime)) {
  84. this.maxTime = Long.parseLong(maxTime);
  85. }
  86. if (StringUtils.isNotEmpty(format)) {
  87. this.format = Boolean.valueOf(format);
  88. }
  89. }
  90. publiclonggetMaxTime(){
  91. return maxTime;
  92. }
  93. public PerformanceInterceptor setMaxTime(long maxTime){
  94. this.maxTime = maxTime;
  95. returnthis;
  96. }
  97. publicbooleanisFormat(){
  98. return format;
  99. }
  100. public PerformanceInterceptor setFormat(boolean format){
  101. this.format = format;
  102. returnthis;
  103. }
  104. publicbooleanisWriteInLog(){
  105. return writeInLog;
  106. }
  107. public PerformanceInterceptor setWriteInLog(boolean writeInLog){
  108. this.writeInLog = writeInLog;
  109. returnthis;
  110. }
  111. public Method getMethodRegular(Class<?> clazz, String methodName){
  112. if (Object.class.equals(clazz)) {
  113. returnnull;
  114. }
  115. for (Method method : clazz.getDeclaredMethods()) {
  116. if (method.getName().equals(methodName)) {
  117. return method;
  118. }
  119. }
  120. return getMethodRegular(clazz.getSuperclass(), methodName);
  121. }
  122. /**
  123. * 获取sql语句开头部分
  124. *
  125. * @param sql
  126. * @return
  127. */privateintindexOfSqlStart(String sql){
  128. String upperCaseSql = sql.toUpperCase();
  129. Set<Integer> set = new HashSet<>();
  130. set.add(upperCaseSql.indexOf("SELECT "));
  131. set.add(upperCaseSql.indexOf("UPDATE "));
  132. set.add(upperCaseSql.indexOf("INSERT "));
  133. set.add(upperCaseSql.indexOf("DELETE "));
  134. set.remove(-1);
  135. if (CollectionUtils.isEmpty(set)) {
  136. return -1;
  137. }
  138. List<Integer> list = new ArrayList<>(set);
  139. Collections.sort(list, Integer::compareTo);
  140. return list.get(0);
  141. }
  142. privatefinalstatic SqlFormatter sqlFormatter = new SqlFormatter();
  143. /**
  144. * 格式sql
  145. *
  146. * @param boundSql
  147. * @param format
  148. * @return
  149. */publicstatic String sqlFormat(String boundSql, boolean format){
  150. if (format) {
  151. try {
  152. return sqlFormatter.format(boundSql);
  153. } catch (Exception ignored) {
  154. }
  155. }
  156. return boundSql;
  157. }
  158. }

使用:

  1. @RestController@AllArgsConstructor
  2. public class TestController {
  3. privateBuyServicebuyService;
  4. // 数据库 test 表 t_order 在事务一致情况无法插入数据,能够插入说明多数据源事务无效// 测试访问 http://localhost:8080/test// 制造事务回滚 http://localhost:8080/test?error=true 也可通过修改表结构制造错误// 注释 ShardingConfig 注入 dataSourceProvider 可测试事务无效情况
  5. @GetMapping("/test")
  6. publicStringtest(Boolean error) {
  7. returnbuyService.buy(null != error && error);
  8. }
  9. }

2.8 数据权限

mapper 层添加注解:

  1. // 测试 test 类型数据权限范围,混合分页模式@DataScope(type = "test", value = {
  2. // 关联表 user 别名 u 指定部门字段权限@DataColumn(alias = "u", name = "department_id"),
  3. // 关联表 user 别名 u 指定手机号字段(自己判断处理)@DataColumn(alias = "u", name = "mobile")
  4. })
  5. @Select("select u.* from user u")
  6. List<User> selectTestList(IPage<User> page, Long id, @Param("name") String username);

模拟业务处理逻辑:

  1. @Beanpublic IDataScopeProvider dataScopeProvider(){
  2. returnnew AbstractDataScopeProvider() {
  3. @OverrideprotectedvoidsetWhere(PlainSelect plainSelect, Object[] args, DataScopeProperty dataScopeProperty){
  4. // args 中包含 mapper 方法的请求参数,需要使用可以自行获取/*
  5. // 测试数据权限,最终执行 SQL 语句
  6. SELECT u.* FROM user u WHERE (u.department_id IN ('1', '2', '3', '5'))
  7. AND u.mobile LIKE '%1533%'
  8. */if ("test".equals(dataScopeProperty.getType())) {
  9. // 业务 test 类型
  10. List<DataColumnProperty> dataColumns = dataScopeProperty.getColumns();
  11. for (DataColumnProperty dataColumn : dataColumns) {
  12. if ("department_id".equals(dataColumn.getName())) {
  13. // 追加部门字段 IN 条件,也可以是 SQL 语句
  14. Set<String> deptIds = new HashSet<>();
  15. deptIds.add("1");
  16. deptIds.add("2");
  17. deptIds.add("3");
  18. deptIds.add("5");
  19. ItemsList itemsList = new ExpressionList(deptIds.stream().map(StringValue::new).collect(Collectors.toList()));
  20. InExpression inExpression = new InExpression(new Column(dataColumn.getAliasDotName()), itemsList);
  21. if (null == plainSelect.getWhere()) {
  22. // 不存在 where 条件
  23. plainSelect.setWhere(new Parenthesis(inExpression));
  24. } else {
  25. // 存在 where 条件 and 处理
  26. plainSelect.setWhere(new AndExpression(plainSelect.getWhere(), inExpression));
  27. }
  28. } elseif ("mobile".equals(dataColumn.getName())) {
  29. // 支持一个自定义条件
  30. LikeExpression likeExpression = new LikeExpression();
  31. likeExpression.setLeftExpression(new Column(dataColumn.getAliasDotName()));
  32. likeExpression.setRightExpression(new StringValue("%1533%"));
  33. plainSelect.setWhere(new AndExpression(plainSelect.getWhere(), likeExpression));
  34. }
  35. }
  36. }
  37. }
  38. };
  39. }

最终执行 SQL 输出:

  1. SELECT u.* FROMuser u
  2. WHERE (u.department_id IN ('1', '2', '3', '5'))
  3. AND u.mobile LIKE'%1533%'LIMIT1, 10

目前仅有付费版本,了解更多 mybatis-mate 使用示例详见:

https://gitee.com/baomidou/mybatis-mate-example

MyBatis­Plus快速入门

MyBatis­Plus(简称 MP)是一个 MyBatis的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。

就像 魂斗罗 中的 1P、2P,基友搭配,效率翻倍。

特性:

无侵入:只做增强不做改变,引入它不会对现有工程产生影响,如丝般顺滑

损耗小:启动即会自动注入基本 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、mybatis-plus 快速使用

1.1 、引入mybatis-plus相关maven依赖

  1. <!‐‐https://mvnrepository.com/artifact/com.baomidou/mybatis‐plus ‐‐>
  2. 2 <dependency>
  3. 3 <groupId>com.baomidou</groupId>
  4. 4 <artifactId>mybatis‐plus</artifactId>
  5. 5 <version>3.3.1</version>
  6. 6 </dependency>

引入mybatis-plus在spring boot中的场景启动器

  1. 1 <!‐‐https://mvnrepository.com/artifact/com.baomidou/mybatis‐plus‐boot‐starter ‐‐>
  2. 2 <dependency>
  3. 3 <groupId>com.baomidou</groupId>
  4. 4 <artifactId>mybatis‐plus‐boot‐starter</artifactId>
  5. 5 <version>3.3.1</version>
  6. 6 </dependency>

ps:切记不可再在pom.xml文件中引入mybatis与mybatis-spring的maven依赖,这一点,mybatis-plus的官方文档中已经

说明的很清楚了

1.2、创建数据表

(1)SQL语句

  1. 1 ‐‐ 创建表
  2. 2 CREATETABLE tbl_employee(
  3. 3idINT(11) PRIMARY KEY AUTO_INCREMENT,
  4. 4 last_name VARCHAR(50),
  5. 5 email VARCHAR(50),
  6. 6 gender CHAR(1),
  7. 7 age INT8 );
  8. 9 INSERTINTO tbl_employee(last_name,email,gender,age) VALUES('Tom','tom@atguigu.com',1,22);
  9. 10 INSERTINTO tbl_employee(last_name,email,gender,age) VALUES('Jerry','jerry@atguigu.com',0,25);
  10. 11 INSERTINTO tbl_employee(last_name,email,gender,age) VALUES('Black','black@atguigu.com',1,30);
  11. 12 INSERTINTO tbl_employee(last_name,email,gender,age) VALUES('White','white@atguigu.com',0,35);

(2) 数据表结构

1.3、 创建java bean

根据数据表新建相关实体类

  1. 1package com.example.demo.pojo;
  2. 23publicclassEmployee{
  3. 4private Integer id;
  4. 5private String lastName;
  5. 6private String email;
  6. 7private Integer gender;
  7. 8private Integer age;
  8. 9publicEmployee(){
  9. 10super();
  10. 11// TODO Auto‐generated constructor stub12 }
  11. 13publicEmployee(Integer id, String lastName, String email, Integer gender, Integer age){
  12. 14super();
  13. 15this.id = id;
  14. 16this.lastName = lastName;
  15. 17this.email = email;
  16. 18this.gender = gender;
  17. 19this.age = age;
  18. 20 }
  19. 21public Integer getId(){
  20. 22return id;
  21. 23 }
  22. 24publicvoidsetId(Integer id){
  23. 25this.id = id;
  24. 26 }
  25. 27public String getLastName(){
  26. 28return lastName;
  27. 29 }
  28. 30publicvoidsetLastName(String lastName){
  29. 31this.lastName = lastName;
  30. 32 }
  31. 33public String getEmail(){
  32. 34return email;
  33. 35 }
  34. 36publicvoidsetEmail(String email){
  35. 37this.email = email;
  36. 38 }
  37. 39public Integer getGender(){
  38. 40return gender;
  39. 41 }
  40. 42publicvoidsetGender(Integer gender){
  41. 43this.gender = gender;
  42. 44 }
  43. 45public Integer getAge(){
  44. 46return age;
  45. 47 }
  46. 48publicvoidsetAge(Integer age){
  47. 49this.age = age;
  48. 50 }
  49. 51@Override52public String toString(){
  50. 53return"Employee [id=" + id + ", lastName=" + lastName + ", email=" + email + ", gender=" + gender +
  51. ", age="54 + age + "]";
  52. 55 }
  53. 565758 }

1.4、 配置application.proprties

数据源使用druid

1spring.datasource.username=root2spring.datasource.password=201820223spring.datasource.url=jdbc:mysql://127.0.0.1:3306/my?useUnicode=true&characterEncoding=UTF‐8&useSSL=false&serverTimezone=GMT%2B84spring.datasource.driver‐class‐name=com.mysql.cj.jdbc.Driver56spring.datasource.type=com.alibaba.druid.pool.DruidDataSource

2、基于mybatis-plus的入门helloworld---CRUD实验

ps:在进行crud实验之前,简单对mybatis与mybatis-plus做一个简单的对比

2.1、mybatis与mybatis-plus实现方式对比

(1)提出问题: 假设我们已存在一张 tbl_employee 表,且已有对应的实体类 Employee,实现 tbl_employee 表的 CRUD

操作我们需要做什么呢?

(2)实现方式: 基于 Mybatis 需要编写 EmployeeMapper 接口,并手动编写 CRUD 方法 提供 EmployeeMapper.xml 映

射文件,并手动编写每个方法对应的 SQL 语句. 基于 Mybatis-plus 只需要创建 EmployeeMapper 接口, 并继承

BaseMapper 接口.这就是使用 mybatis-plus 需要完成的所有操作,甚至不需要创建 SQL 映射文件。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/363959
推荐阅读
  

闽ICP备14008679号