MybatisPlus数据安全,你掌握了吗

MybatisPlus数据安全概述

存在数据库中的数据对于普通用户而言是不可见的,好像是藏起来了一样,但对于开发者,只要知道数据库的连接地址、用户名、密码,则数据不再安全;这也意味着,一旦连接数据库的配置文件暴露出去,则数据不再安全。

应用场景

开发中的数据库配置文件或配置中心中的配置信息

API介绍

MybatisPlus中有个针对配置项加密处理的

MybatisPlus数据安全,你掌握了吗
MybatisPlus数据安全,你掌握了吗
代码实现1 创建mp工程

创建maven工程,结构如下:

MybatisPlus数据安全,你掌握了吗
2 代码编写pom.xml <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.4.1</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> </dependencies>application.ymlspring: datasource: url: jdbc:mysql://localhost:3306/springboot?useSSL=false&characterEncoding=utf8&serverTimezone=Asia/Shanghai driver-class-name: com.mysql.cj.jdbc.Driver username: root password: root mybatis-plus: type-aliases-package: com.itheima.pojo启动类package com.itheima; import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; / * @version 1.0 * @description 说明 * @package com.itheima */ @SpringBootApplication @MapperScan(basePackages = “com.itheima.mapper”) public class App { public static void main(String[] args) { SpringApplication.run(App.class,args); } } pojopackage com.itheima.pojo; import com.baomidou.mybatisplus.annotation.TableField; import lombok.Data; / * @version 1.0 * @description 说明 * @package com.itheima.pojo */ @Data public class User { private Integer id; private String username; @TableField(select = false) private String password; private String salt; } mapperpackage com.itheima.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.itheima.pojo.User; import org.springframework.stereotype.Repository; / * @version 1.0 * @description 说明 * @package com.itheima.mapper */ @Repository public interface UserMapper extends BaseMapper<User> { } service接口与实现类package com.itheima.service; import com.baomidou.mybatisplus.extension.service.IService; import com.itheima.pojo.User; / * @version 1.0 * @description 说明 * @package com.itheima.service */ public interface UserService extends IService<User> { } package com.itheima.service.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.itheima.mapper.UserMapper; import com.itheima.pojo.User; import com.itheima.service.UserService; import org.springframework.stereotype.Service; / * @version 1.0 * @description 说明 * @package com.itheima.service.impl */ @Service public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements UserService { } controllerpackage com.itheima.controller; import com.itheima.pojo.User; import com.itheima.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.web.bind.annotation.RestController; import java.util.List; / * @version 1.0 * @description 说明 * @package com.itheima.controller */ @RestController @RequestMapping(“user”) public class UserController { @Autowired private UserService userService; @GetMapping public List<User> listAll(){ return userService.list(); } } 启动测试生成加密后的内容package com.itheima; import com.baomidou.mybatisplus.core.toolkit.AES; import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; / * @version 1.0 * @description 说明 * @package com.itheima */ @SpringBootApplication @MapperScan(basePackages = “com.itheima.mapper”) public class App { public static void main(String[] args) { String secretKey = AES.generateRandomKey(); System.out.println(“secretKey:” + secretKey); String url = AES.encrypt(“jdbc:mysql://localhost:3306/springboot?useSSL=false&characterEncoding=utf8&serverTimezone=Asia/Shanghai”, secretKey); String username = AES.encrypt(“username”, secretKey); String password = AES.encrypt(“password”, secretKey); System.out.println(“url=” +url ); System.out.println(“username=” +username ); System.out.println(“password=” +password ); SpringApplication.run(App.class,args); } }
MybatisPlus数据安全,你掌握了吗
替换配置文件spring: datasource: url: mpw:wT9PqZ9Hf4VWgXDuZ/Z1JKfdDyS0sSu3+O2qDkJ/Ulnabpq3z1lZbiThWseQ4DQSx3+SWpufsTysjdYhn6Scsa77AzIIaUgv8DZ17gPxAq88AISmxd9OjxidmY50uBVMkGhP9qAted45zuHBzVrw6Q== driver-class-name: com.mysql.cj.jdbc.Driver username: mpw:Pnh++mI45YrC4s6JveJYaA== password: mpw:Pnh++mI45YrC4s6JveJYaA== mybatis-plus: type-aliases-package: com.itheima.pojo添加启动参数
MybatisPlus数据安全,你掌握了吗
运行效果
MybatisPlus数据安全,你掌握了吗
3 优化目的

启动时,需要指定密钥 才能使用,如果我们把它封装到一个jar里,让它启动时自动去加载密钥,且密钥可配置,那这样就更灵活了。

分析

通过查看MybatisPlus加载的源码,其做解密处理的类如下:

/* * Copyright (c) 2011-2020, baomidou (jobob@qq.com). * <p> * Licensed under the Apache License, Version 2.0 (the “License”); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * <p> * https://www.apache.org/licenses/LICENSE-2.0 * <p> * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an “AS IS” BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package com.baomidou.mybatisplus.autoconfigure; import com.baomidou.mybatisplus.core.toolkit.AES; import com.baomidou.mybatisplus.core.toolkit.CollectionUtils; import com.baomidou.mybatisplus.core.toolkit.StringUtils; import org.springframework.boot.SpringApplication; import org.springframework.boot.env.EnvironmentPostProcessor; import org.springframework.boot.env.OriginTrackedMapPropertySource; import org.springframework.core.env.ConfigurableEnvironment; import org.springframework.core.env.MapPropertySource; import org.springframework.core.env.PropertySource; import org.springframework.core.env.SimpleCommandLinePropertySource; import java.util.HashMap; / * 安全加密处理器 * * @author hubin * @since 2020-05-23 */ public class SafetyEncryptProcessor implements EnvironmentPostProcessor { @Override public void postProcessEnvironment(ConfigurableEnvironment environment, SpringApplication application) { / * 命令行中获取密钥 */ String mpwKey = null; for (PropertySource<?> ps : environment.getPropertySources()) { if (ps instanceof SimpleCommandLinePropertySource) { SimpleCommandLinePropertySource source = (SimpleCommandLinePropertySource) ps; mpwKey = source.getProperty(“mpw.key”); break; } } / * 处理加密内容 */ if (StringUtils.isNotBlank(mpwKey)) { HashMap<String, Object> map = new HashMap<>(); for (PropertySource<?> ps : environment.getPropertySources()) { if (ps instanceof OriginTrackedMapPropertySource) { OriginTrackedMapPropertySource source = (OriginTrackedMapPropertySource) ps; for (String name : source.getPropertyNames()) { Object value = source.getProperty(name); if (value instanceof String) { String str = (String) value; if (str.startsWith(“mpw:”)) { map.put(name, AES.decrypt(str.substring(4), mpwKey)); } } } } } // 将解密的数据放入环境变量,并处于第一优先级上 if (CollectionUtils.isNotEmpty(map)) { environment.getPropertySources().addFirst(new MapPropertySource(“custom-encrypt”, map)); } } } }

其使用了SPI原理,在类所在的jar下的META-INF/spring.factories中配置了这个SafetyEncryptProcessor。那我们能否也来定义一个这样的配置处理器,判断环境配置中是否配置了–mpw.key,如果没有配置,则给它配置上,这样就不用在启动时添加参数来运行了。

MybatisPlus数据安全,你掌握了吗
实现创建配置工程mysafe
MybatisPlus数据安全,你掌握了吗
代码清单

pom.xml

<parent> <artifactId>spring-boot-starter-parent</artifactId> <groupId>org.springframework.boot</groupId> <version>2.3.8.RELEASE</version> </parent> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> </dependencies>

SafetyEncryptProcessor

package com.itheima; import org.springframework.boot.SpringApplication; import org.springframework.boot.env.EnvironmentPostProcessor; import org.springframework.core.Ordered; import org.springframework.core.env.ConfigurableEnvironment; import org.springframework.core.env.PropertySource; import org.springframework.core.env.SimpleCommandLinePropertySource; import org.springframework.core.io.ClassPathResource; import org.springframework.util.StringUtils; import java.io.IOException; import java.util.Properties; / * @version 1.0 * @description 说明 * @package com.itheima */ public class SafetyEncryptProcessor implements EnvironmentPostProcessor, Ordered { @Override public void postProcessEnvironment(ConfigurableEnvironment environment, SpringApplication application) { Properties pro = new Properties(); try { pro.load(new ClassPathResource(“ert.properties”).getInputStream()); } catch (IOException e) { e.printStackTrace(); } / * 命令行中获取密钥 */ String mpwKey = null; for (PropertySource<?> ps : environment.getPropertySources()) { if (ps instanceof SimpleCommandLinePropertySource) { SimpleCommandLinePropertySource source = (SimpleCommandLinePropertySource) ps; mpwKey = source.getProperty(“mpw.key”); break; } } if(StringUtils.isEmpty(mpwKey)){ environment.getPropertySources().addFirst(new SimpleCommandLinePropertySource(“mySpringApplicationCommandLineArgs”, “–mpw.key=” + pro.getProperty(“ert.version”))); } } @Override public int getOrder() { return 0; } }

spring.factories

ert.version=b440fe7fd55dbe26 org.springframework.boot.env.EnvironmentPostProcessor= com.itheima.SafetyEncryptProcessor

ert.properties

ert.version=2ac6625cb3188f52安装到本地仓库
MybatisPlus数据安全,你掌握了吗
修改mp工程添加依赖

修改pom.xml,添加mysafe的依赖

<dependency> <groupId>com.itheima</groupId> <artifactId>mysafe</artifactId> <version>1.0-SNAPSHOT</version> </dependency>4 测试结果

去除启动时的参数设置。再启动后访问页面、效果如下:

MybatisPlus数据安全,你掌握了吗
总结MybatisPlus利用了springboot的配置信息增强器与SPI机制来实现对配置文件中敏感数据的解密处理。mysafe工程打成的jar包,将来就上传到企业的内部服务器上,当密钥变更时,重新打包即可。而我们将来布署项目到服务器上时,也肯定存在配置文件,一旦配置信息暴露,则数据库就危险了。通过加密手段能够让破解者增加破解阻碍。此次练习仅做抛砖引玉作用,关于加密与解密是没有做到那么严谨的,需要结合自己公司实际情况去调整。

免责声明:文章内容来自互联网,本站仅作为分享,不对其真实性负责,如有侵权等情况,请与本站联系删除。
转载请注明出处:MybatisPlus数据安全,你掌握了吗 https://www.dachanpin.com/a/cyfx/11431.html

(0)
上一篇 2023-05-12 03:18:32
下一篇 2023-05-12 03:19:38

相关推荐

  • 二外产业领袖大讲堂系列讲座:如何踏上指数型创业之路

    许晖老师的讲解理论结合实践,为同学们提供了关于指数型创业的一些基本方法,开拓了同学们的视野。讲座现场不时爆发热烈的掌声,讲解结束后许老师就同学们提出的有关目前市场上指数型创业企业的发展路径问题,做了专业的解答。 最后骆欣庆主任代表二外MBA/MTA教育中心对许晖老师表示衷心的感谢,希望今后还有机会邀请许老师为大家介绍指数型经济的相关问题。 北京第二外国语学院…

    2023-05-13
    144
  • 零食多全新零食加盟政策 为创业者打好财富基石

      因此,零食加盟品牌的大热也就成为行业发展的必然趋势了。而对于大部分零食加盟行业里的创业者们而言,选择对一个优秀的加盟品牌无异于为自己的创业找到了一个绝佳的好帮手。   据了解,现在的零食加盟行业依旧火热,不少创业者纷纷涌入这个行业,想要从其中找到一条致富路。但是,这些想要做零食加盟的创业者大军中,绝大部分都是小资本投资者,他们手中所持有的创业启动资金比较…

    创业分享 2023-05-25
    136
  • 【创业资讯】骗了中国数百亿的“日本毒瘤”,终于崩盘了!

    中国传销“鼻祖”——日本生命公司 萌芽: 虽然传销鼻祖——“日本生命”垮掉了,但是由它带来的“传销巨毒”直到现在依然还在残害着无数国人! 发展: 据该机构称,这家黑心传销公司打着“可以替代医疗设备,从根本上解决身体烦恼”的高尚理念,主要向老年顾客贩卖他们倾注心血开发的治疗仪、床垫、枕头等100多种”高科技”保健产品。 在当时,日本的经…

    创业分享 2023-05-11
    178
  • 兰州大学80后核博士找到创业“核”心

      对于曾经在北京拥有稳定工资和较高待遇的周鹏来说,如果留在原公司,未来的发展前景也很不错,起初,周围的同事和朋友并不是很看好他。“但是我这个人内心的性格就是这样,属于这种耐不住寂寞闲不下的人,就想趁着年轻闯一闯,不然总觉得有些对不起自己,心里就欠一点什么。”   凭着一股冲劲,和对实现自我价值的理想,周鹏也逐渐找到了许多和他拥有同样理想的创业伙伴。虽然公司…

    创业分享 2023-06-01
    127
  • 长沙市芙蓉区创新创业论坛举行 企业家教您创业

      芙蓉区副区长张庆和表示,当前,国家对创新创业大力支持,主要涉及空间建设、资金扶持、品牌保护、税收优惠等多方面,全面而有力地搭建了一个大众创新万众创业的良好平台。本次活动旨在解读创新创业政策,打通政策落实的“最后一公里”,同时也让在场大学生加深了解创新创业,对自身有更好的思考和定位。   论坛邀请翔天酒店董事长张健鸣、湖南省福建总商会副会长吴育林、湖湘青年…

    2023-05-31
    174

发表回复

登录后才能评论

联系我们

在线咨询: QQ交谈

邮件:362039258@qq.com

工作时间:周一至周五,9:30-16:30,节假日休息