摘要: 学习oauth2 配合使用Element Plus + Vue3(idea开发,需要安装lombok插件) 版本: 依赖 版本 spring-boot 2.5.3 spring-cloud 2020.0.4 spring-security 3.2.10.RELEASE spring-security 阅读全文
posted @ 2024-10-21 15:12 夏目co 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 引入了依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> </dependency> 编译项目之后并没有生成 阅读全文
posted @ 2024-11-01 16:05 夏目co 阅读(22) 评论(0) 推荐(0) 编辑
摘要: springboot 整合 activiti 搭配 vue3 element-plus activiti-modeler bpmn-js 配合使用 Element Plus + Vue3(idea开发,需要安装lombok插件) 相关依赖版本 后台: 依赖 版本 spring-boot 2.7.18 阅读全文
posted @ 2024-10-31 10:17 夏目co 阅读(54) 评论(0) 推荐(0) 编辑
摘要: activiti7移除了静态方法创建ProcessDiagramGenerator,需要创建DefaultProcessDiagramGenerator实例 依赖: <properties> <batik-transcoder.version>1.17</batik-transcoder.versi 阅读全文
posted @ 2023-12-07 14:35 夏目co 阅读(2152) 评论(0) 推荐(1) 编辑
摘要: 用windows虚拟机安装jdk的时候一直闪退,索性就直接搞解压版,结果百度搜的全是某dn要积分的。。。 找到之后上传网盘直接下,不知道有人用得上不,包含免安装和其他版本的。 先上官网归档连接,可以直接去官网下载,右侧选版本:Java Archive | Oracle Windows(jdk7、8、 阅读全文
posted @ 2022-05-26 15:14 夏目co 阅读(7696) 评论(0) 推荐(0) 编辑
摘要: 今天维护老项目改Bug遇到一个这个问题: Could not write JSON: Object is null; nested exception is com.fasterxml.jackson.databind.JsonMappingException: Object is null (th 阅读全文
posted @ 2021-10-16 11:05 夏目co 阅读(1479) 评论(0) 推荐(0) 编辑
摘要: oauth2的依赖版本: <dependency> <groupId>org.springframework.security.oauth.boot</groupId> <artifactId>spring-security-oauth2-autoconfigure</artifactId> <ve 阅读全文
posted @ 2021-09-09 09:38 夏目co 阅读(1123) 评论(0) 推荐(0) 编辑
摘要: 之前的版本创建邮件发送的方式: String text = VelocityEngineUtils.mergeTemplateIntoString( velocityEngine, "模板名称.vm", "UTF-8", model); 由于VelocityEngineUtils类移除,用这个方式创 阅读全文
posted @ 2021-08-23 10:51 夏目co 阅读(518) 评论(0) 推荐(1) 编辑
摘要: 破解教程网上一大堆了,直接发文件地址好勒,地址里面有idea2019.3版本,和jetbrains-agent.jar包和激活码。 IntelliJ IDEA 2019.03(含破解文件).zip链接:https://pan.baidu.com/s/1vyWA8r6MUAG-3hPm5gUpnw?p 阅读全文
posted @ 2020-03-15 18:48 夏目co 阅读(7764) 评论(3) 推荐(0) 编辑
摘要: 加了一个转成了Base64编码。,其他的和网上一样。 1 public class ValidateCodeUtil { 2 3 // 图片的宽度。 4 private int width = 160; 5 // 图片的高度。 6 private int height = 40; 7 // 验证码字 阅读全文
posted @ 2020-03-15 18:31 夏目co 阅读(1017) 评论(0) 推荐(0) 编辑