上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 74 下一页
摘要: 一、创建一个springboot工程 添加依赖: <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.0.RELEA 阅读全文
posted @ 2022-06-09 14:05 周文豪 阅读(1567) 评论(0) 推荐(0) 编辑
摘要: 一、报错 报错如下: org.xml.sax.SAXException: SAX2 driver class org.apache.xerces.parsers.SAXParser not found at org.xml.sax.helpers.XMLReaderFactory.loadClass 阅读全文
posted @ 2022-06-09 11:13 周文豪 阅读(1399) 评论(0) 推荐(0) 编辑
摘要: 一、报错 导入excel文件时报错,报错如下: org.apache.tomcat.util.http.fileupload.FileUploadBase$SizeLimitExceededException: the request was rejected because its size (1 阅读全文
posted @ 2022-06-09 10:58 周文豪 阅读(2601) 评论(0) 推荐(0) 编辑
摘要: 一、问题 报错如下: 二、原因分析 原因分析:Navicat是一款非常好用的数据库管理工具,可是一段时间没有使用,突然发现之前建立的Oracle连接无法打开,提示要输入旧密码和新密码以及确认新密码。正确输入旧密码并输入新密码后,会报password Expired.Please enter a ne 阅读全文
posted @ 2022-06-08 11:03 周文豪 阅读(700) 评论(0) 推荐(0) 编辑
摘要: 一、凯撒加密 1、介绍 凯撒密码作为一种最为古老的对称加密体制,在古罗马的时候都已经很流行了,它的基本思想是:通过把字母移动一定的位数来实现加密和解密。明文中的所有字母都在字母表上向后(或向前)按照一个固定数目进行偏移后被替换成密文。例如当偏移量是3的时候,所有的字母A将被替换成D,B变成E,由此可 阅读全文
posted @ 2022-06-07 21:47 周文豪 阅读(669) 评论(0) 推荐(0) 编辑
摘要: 问题描述:表中主键ID的最大值为89510,而序列号的下一个值为87510,如何让序列号增大到89510呢? 查询序列号的下一个值: select T_QUALITY_REPORT_INFO_SEQ.nextval from dual 修改序列号的步长为2000 alter sequence t_q 阅读全文
posted @ 2022-05-31 15:21 周文豪 阅读(70) 评论(0) 推荐(0) 编辑
摘要: Excel如下: 工具类: import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.util.*; import 阅读全文
posted @ 2022-05-30 10:06 周文豪 阅读(4146) 评论(0) 推荐(1) 编辑
摘要: 报错如下: Exception in thread "main" java.lang.IllegalStateException: Cannot get a STRING value from a NUMERIC cell at org.apache.poi.xssf.usermodel.XSSFC 阅读全文
posted @ 2022-05-30 09:42 周文豪 阅读(1008) 评论(0) 推荐(0) 编辑
摘要: 情况一:标签中放平方米 效果 代码: <el-row type="flex" class="row-bg"> <el-col :span="12"> <el-form-item prop="plantArea"> <span slot="label">种植面积(m<sup>2</sup>):</sp 阅读全文
posted @ 2022-05-27 10:03 周文豪 阅读(636) 评论(0) 推荐(0) 编辑
摘要: 多个execution用“||”进行拼接 代码如下: @Pointcut("@annotation(org.springframework.web.bind.annotation.PostMapping) || execution(public * com.ljxx.nmpa.*.controlle 阅读全文
posted @ 2022-05-25 15:58 周文豪 阅读(1864) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 74 下一页