/img/系统图片/avatar.png

hahaen

Flowable教程

Flowable BPMN 用户手册 方法工具类 流程图 启动流程 1 2 3 // 启动流程 Map<String, Object> variables = new HashMap<>(); remoteFlowAbleService.startProcessByCodeAndId(ProcessConstants.XXXXXX, id, variables); ProcessConstants.XXXXXX 流程类型 id 业务id variables 流程变量 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

Word导出

Freemarker导出word 参考链接1 参考链接2 参考链接3 1. 说明 如何使用Freemarker导出word(.doc)(.docx未实现)

Excel导入导出

Excel导入 easyexcel导入(无实体类) 定义一个实体(文件读取监听器) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

使用jasypt加密密码信息

jasypt加密 使用参考教程 pom.xml引入依赖 1 2 3 4 5 6 <dependency> <groupId>com.github.ulisesbocchio</groupId> <artifactId>jasypt-spring-boot-starter</artifactId> <version>3.0.4</version> </dependency> 写一个main函数将我们的密码进行加密 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15

安装MySQL教程

安装教程参考1 安装教程参考2 赋权限教程 linux安装(压缩包方式) 官网下载安装 MySQl5.7 MySQl8 注意事项 centos7对应下载 Linux Generic 检查服务器是否有MySQ

敏感词过滤

教程地址 github教程地址 sensitive-word Maven 引入 1 2 3 4 5 <dependency> <groupId>com.github.houbb</groupId> <artifactId>sensitive-word</artifactId> <version>0.2.0</version> </dependency> 创建敏感词表 sensitive_word 1 2 3 4 5 6 DROP TABLE IF EXISTS `sensitive_word`; CREATE TABLE `sensitive_word` ( `id` bigint NOT NULL AUTO_INCREMENT, `words` varchar(300) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE