摘要:
javax.servlet.ServletException: Could not resolve view with name 'order/list' in servlet with name 'dispatcherServlet' at org.springframework.web.serv 阅读全文
摘要:
com.mysql.cj.exceptions.DataReadException: Zero date value prohibited at com.mysql.cj.result.SqlTimestampValueFactory.localCreateFromTimestamp(SqlTime 阅读全文
摘要:
Window 下安装 下载地址:https://github.com/MSOpenTech/redis/releases。 Redis 支持 32 位和 64 位。这个需要根据你系统平台的实际情况选择,这里我们下载 Redis-x64-xxx.zip压缩包到 C 盘,解压后,将文件夹重新命名为 re 阅读全文
摘要:
数据存储在 磁盘: 寻址:ms 带宽:G/m 内存: 寻址:ns 带宽:很大 在磁盘中寻址上,比在内存中,慢了10万倍 IOBUffer:成本问题 磁盘与磁道,会有扇区,一个扇区为512BYTE,索引的成本会变大,这个时候,读取磁盘的时候,一次会读取4K。 REmote DIctionary Ser 阅读全文
摘要:
14:28:23,255 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@f5f2bb7 - URL [jar:file:/home/buybal/tomcat/industry-invoice-8047/industry 阅读全文
摘要:
1、为类添加自动注释模版 File-->Settings-->Editor-->File and Code Templates /** * @author :mmzs * @date :Created in ${DATE} ${TIME} * @description:${description} 阅读全文
摘要:
2.在IDEA中使用代码块生成二维码 阅读全文
摘要:
一、背景说明 在tomcat的localhost.log日志中时长见到 getOutputStream() has already been called for this response 异常的身影,一直不知由于哪里原因导致异常的产生,此异常并不会影响前端客户正常使用。 二、认识异常 异常详情如 阅读全文
摘要:
1、问题描述 严重: Servlet.service() for servlet [default] in contextwith path [/OxygenCloud] threw exception java.lang.IllegalStateException:Cannot call send 阅读全文
摘要:
因为在使用的时候没有使用@ResponseBody这个注解,所以才会报上面的异常 阅读全文
摘要:
pom.xml依赖 <!-- 二维码生成 --> <!-- https://mvnrepository.com/artifact/com.google.zxing/core --> <dependency> <groupId>com.google.zxing</groupId> <artifactI 阅读全文
摘要:
/** * 二维码创建 * @author yhzm * */ public class printServiceImpl extends BaseService { public void barCodeGenera() { init(false); //先创建一个二维码 String text 阅读全文
摘要:
/** * @param filePath * 源图片路径 * @param markContent * 图片中添加内容 * @param outPath * 输出图片路径 字体颜色等在函数内部实现的 * * @param */ // 给jpg添加文字 public boolean createSt 阅读全文
摘要:
今天遇到一个问题,上图 这段代码主要是给图片添加水印 后来百度发现可能是图片的路径出了问题,因为是动态获取的图片地址,然后我把地址打印出来了 之后通过终端查看,果然没有 之后我在classes目录找到了文件 这时焕然大悟 因为我的图片文件一开始是放在main文件夹的resources文件夹中的,在文 阅读全文