上一页 1 2 3 4 5 6 7 8 9 ··· 65 下一页
摘要: 1.添加Maven依赖 <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>4.1.2</version> </dependency> 2.Word文档模版中以${xxx 阅读全文
posted @ 2020-12-07 13:03 yshy 阅读(1758) 评论(0) 推荐(1) 编辑
摘要: 下载地址:https://github.com/fex-team/ueditor/releases/tag/v1.4.3.3 应用服务器使用:weblogic 源码下载后,将ueditor相关文件放置到Web目录 (1)修改ueditor.config.js配置文件 增加以下配置: window.U 阅读全文
posted @ 2020-11-19 12:34 yshy 阅读(601) 评论(0) 推荐(0) 编辑
摘要: Kafka依赖zookeeper,在安装Kafka之前首先运行zookeeper服务。 1:安装配置zookeeper (1)解压apache-zookeeper-3.5.6-bin.tar.gz 到D:\tmp\apache-zookeeper-3.5.6-bin目录; (2)到conf目录,将z 阅读全文
posted @ 2020-11-05 13:34 yshy 阅读(665) 评论(0) 推荐(0) 编辑
摘要: 1:查看用户密码信息:SELECT `user`, `host`, `authentication_string`, `plugin` FROM mysql.user; 发现root密码与其他系统用户密码格式不一致。 2:修改密码规则 ALTER USER 'root'@'%' IDENTIFIED 阅读全文
posted @ 2020-10-26 14:03 yshy 阅读(346) 评论(0) 推荐(0) 编辑
摘要: 1:在项目下面创建libs文件 2:在pom.xml中引入依赖 <dependency> <groupId>com.XXXX</groupId> <artifactId>XXXX</artifactId> <version>16.8</version> <scope>system</scope> < 阅读全文
posted @ 2020-09-25 15:21 yshy 阅读(664) 评论(0) 推荐(0) 编辑
摘要: 在解析XML文件时: org.dom4j.DocumentException: Error on line 1 of document : An invalid XML character (Unicode: 0x5) was found in the element content of the 阅读全文
posted @ 2020-08-28 15:55 yshy 阅读(1684) 评论(1) 推荐(0) 编辑
摘要: String fileName; String userAgent = request.getHeader("user-agent").toLowerCase(); if(userAgent.contains("msie") || userAgent.contains("like gecko")){ 阅读全文
posted @ 2020-08-13 13:35 yshy 阅读(200) 评论(0) 推荐(0) 编辑
摘要: /** * 获取4位包括字母+数字的随机码 * @return */ public static String getRandomValidStr(){ String letters[] = {"A","B","C","D","E","F","G","H","I","J","K","L","M"," 阅读全文
posted @ 2020-08-04 15:03 yshy 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 1.pom.xml引入相关依赖 <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.0.3</version> </dependency> 阅读全文
posted @ 2020-07-29 08:35 yshy 阅读(533) 评论(0) 推荐(0) 编辑
摘要: spuuids字段内容为:'08A7A8D9DDF3AB4923428C7883DDBA49,14A44FC2B4EF434C274489FC1DDAA9D9,C055DB766347D6C78854671C7383AC26' SELECT regexp_substr(t.spuuids,'[^,] 阅读全文
posted @ 2020-07-13 14:43 yshy 阅读(2151) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 65 下一页