数据库密码加密,springboot报EncryptionOperationNotPossibleException 数据库加密依赖<!--数据库加密--> <dependency> <groupId>com.github.ulisesbocchio</groupId> <artifactId>jasypt-spring-boot-starter</artifactId> <version>3.0.0</version> &
day02,(springboot高级用法,手动整合mybatis;mybatis-plus 入门) 1.学习springboot高级用法2.手动整合mybatis3.学习mybatis-plus 以对象的方式操作数据库
mysql的主从复制 对应哔哩哔哩地址虚拟机安装两个mysqlmysql1 ip地址:192.168.130.201mysql2 ip地址:192.168.130.202主从复制参考文章https://blog.csdn.net/fmyzc/article/details/78053306mysql的uuid重复问题解决方案参考文章https://blog.csdn.net/qq_44895681/article/details/106574216mysql清除主从关系参考文章http.
springboot+flowable入门第四篇 springboot+flowable入门第四篇对应哔哩哔哩的第六集对应代码码云地址https://gitee.com/fjdaima/flowable_study011.查询自己的任务 /** * 查看任务表 */ @RequestMapping("/query/task") public String queryTask(){ TaskService taskService = processEngine.getTaskServic
springboot+flowable入门第三篇 springboot+flowable第三篇入门前提配置流程引擎 @Bean public ProcessEngine getProcessEngine(){ ProcessEngineConfiguration cfg = new StandaloneProcessEngineConfiguration() .setJdbcUrl(url) .setJdbcUsername(username)
springboot+flowable入门第一篇 springboot+flowable入门第一集1.flowable官网https://www.flowable.com/open-source/2.源码地址https://github.com/flowable/flowable-engine/releases3.中文手册https://tkjohn.github.io/flowable-userguide/
springboot的 加密依赖 导致的 出现异常EncryptionOperationNotPossibleException springboot的加密依赖<!--数据库加密--> <dependency> <groupId>com.github.ulisesbocchio</groupId> <artifactId>jasypt-spring-boot-starter</artifactId> <version>3.0.0</version>
索引基础总结mysql(innodb) 索引两大类1.聚集索引(也有人叫聚簇索引)定义:存储该索引的一行记录的值一张表有且只有一个聚集索引规则如下:(1)如果表定义了主键,则主键就是聚集索引(2)如果表没有定义主键,则会找一个唯一非空的索引做聚集索引(3)都没有,InnoDB会创建一个隐藏的row-id作为聚集索引2.非聚集索引(普通索引)定义:存储该索引的主键,和该字段的值。 (例如:定义了id为主键,age为普通的索引。那么通过 age索引 可以一次查询出id和age的值)...
mysql存储过程构建100000条虚拟数据 create table student(id int primary key auto_increment,age int ,name varchar(100),index (age,name))insert into student (age,name) values(18,'fanjia'+'aa')DELIMITER $$DROP PROCEDURE IF EXISTS `insert_data`$$CREATE PROCEDURE `insert_data`(I.