上一页 1 ··· 4 5 6 7 8 9 10 下一页
摘要: 1、注入依赖(二选一) <!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper-spring-boot-starter --> <dependency> <groupId>com.github.pagehelp 阅读全文
posted @ 2021-08-23 14:26 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: 官方API:http://fex.baidu.com/webuploader/doc/index.html 1、前端代码 文件接收服务端 需要修改为你自己后台的server路径 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN 阅读全文
posted @ 2021-08-17 18:26 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: 事件原有: 我需要读A库的数据写到B库中 中途需要切换数据源 但是我们又不是分布式的项目如果加上了@Transactional切换数据源就不会生效了 这时候就用到了事务的手动回滚 try { //进行删除操作 managementReadWriteDao.delUserHeroByUserId(wr 阅读全文
posted @ 2021-08-13 17:31 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: 1、创建存储过程 DELIMITER $ CREATE PROCEDURE pro_insert2(IN n int) BEGIN DECLARE i INT DEFAULT 1; WHILE i <= n DO INSERT into excel (name,age,gender ) VALUES 阅读全文
posted @ 2021-08-13 15:28 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: 参考element官方文档案例:https://element.eleme.cn/#/zh-CN/component/installation 代码参考原作者:https://www.cnblogs.com/allanlau/p/13397625.html 结合element官方文档和原作者修改代码 阅读全文
posted @ 2021-08-12 14:20 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: package com.xyz.mop.manage.controller; import cn.hutool.core.date.DateUtil; import cn.hutool.core.io.FileUtil; import com.aliyun.oss.OSS; import com.a 阅读全文
posted @ 2021-08-11 19:49 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: 问题描述: 我单独写了一个jar项目是用来更新redis的 然后主项目会去读取redis中更新完之后的数据 但是主项目读取的时候发现@type路径不一样 导致映射不了实体类就会报错为一个转换异常 jar项目的实体路径为: com.xyz.miniLegion.entity.OpenNotice 主项 阅读全文
posted @ 2021-08-11 16:28 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: /** * 判断字符串是否可以转化为json对象 * * @param content * @return */ public static boolean isJsonObject(String content) { if (StringUtils.isBlank(content)) return 阅读全文
posted @ 2021-08-07 15:39 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: package com.xyz.miniLegion.utils; import org.apache.commons.codec.binary.Base64; import javax.crypto.Cipher; import java.io.ByteArrayOutputStream; imp 阅读全文
posted @ 2021-08-05 15:41 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: import org.apache.commons.lang3.ArrayUtils; import org.springframework.core.io.ClassPathResource; import org.springframework.core.io.Resource; import 阅读全文
posted @ 2021-08-05 14:35 难忘是想起 阅读(0) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 下一页