10 2021 档案
摘要:报错原因: 项目中要压缩图片 用maven 打包时,提示 程序包com.sun.image.codec.jpeg不存在 解决方法: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plug
阅读全文
摘要:springboot 项目部署到tomcat 下,上传附件出现问题: 报错信息: [http-nio-80-exec-544] 2021-09-29 15:54:20 (GlobalExceptionHandler.java:372) 运行时异常: org.springframework.web.m
阅读全文
摘要:spring 整合 mybatis 报错日志 Exception in thread "main" org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.Persiste
阅读全文
摘要:spring 整合 mybatis 报错信息 Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.mybatis.spring.SqlSessio
阅读全文
摘要:spring 整合 mybatis 报错信息 java.lang.NoClassDefFoundError: org/apache/commons/pool/KeyedObjectPoolFactory 找不到commons-pool, 添加commons-pool-1.6依赖 <dependenc
阅读全文
摘要:spring 整合 mybatis 查询数据库报错 java.lang.NoClassDefFoundError: org/springframework/dao/support/DaoSupport 缺少jar包 添加如下jar包 <dependency> <groupId>org.springf
阅读全文
摘要:1、SpringBoot 项目 (1)、 Resource resource = new ClassPathResource("template/xixu.png"); // template 前面不要加 / File file = resource.getFile(); (2)、 String p
阅读全文