随笔分类 -  常见异常

Exceptions
摘要:1.情景展示 使用mybatis给Oracle表插入数据的时候,报错信息如下: org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.type.TypeException: Could not 阅读全文
posted @ 2022-05-30 16:34 Marydon 阅读(1355) 评论(0) 推荐(0) 编辑
摘要:1.情景展示 将项目部署在tomcat下,启动不报错。 当跳转jsp页面时,报错信息如下: 无法在web.xml或使用此应用程序部署的jar文件中解析绝对uri:[http://java.sun.com/jsp/jstl/core] 页面并报错404 2.具体分析 项目缺少jstl所需的两个jar包 阅读全文
posted @ 2022-02-25 16:58 Marydon 阅读(2534) 评论(0) 推荐(0) 编辑
摘要:1.情景展示 前端发送请求后,报错信息如下: org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'orgCode' is not present。 2.具体分 阅读全文
posted @ 2022-02-19 17:58 Marydon 阅读(716) 评论(0) 推荐(0) 编辑
摘要:1.情景展示 springboot项目启动失败,报错信息如下: Caused by: java.lang.NoClassDefFoundError: org/hibernate/validator/internal/engine/DefaultClockProvider 2.原因分析 事实上,现在, 阅读全文
posted @ 2022-01-20 10:48 Marydon 阅读(964) 评论(4) 推荐(0) 编辑
摘要:1.情景展示 在cmd窗口当中,使用javac命令编译java文件,报错信息如下: 错误: 编码GBK的不可映射字符,如何解决? 2.原因分析 根源:java文件中含有中文,不管是代码还是注释。 字符集冲突,windows中文版,默认的字符集为:GBK,而当你的java文件当中的汉字不是字符集:GB 阅读全文
posted @ 2021-11-13 13:50 Marydon 阅读(20498) 评论(0) 推荐(1) 编辑
摘要:1.情景展示 tomcat 日志时不时会报出如下异常信息,到底是怎么回事? java.lang.IllegalArgumentException: Invalid character found in the request target. The valid characters are defi 阅读全文
posted @ 2019-07-23 11:29 Marydon 阅读(776) 评论(0) 推荐(0) 编辑
摘要:1.情景展示 eclipse,运行web项目时,报错信息如下: The absolute uri: [http://java.sun.com/jsp/jstl/core] cannot be resolved in either web.xml or the jar files deployed w 阅读全文
posted @ 2019-05-30 10:49 Marydon 阅读(2961) 评论(0) 推荐(0) 编辑
摘要:1.情景展示 Java 报错信息如下: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 2.原因分析 首先,这是越界异常,但不是数组越界异常。 数组越界的信息如下: java.lang.ArrayIndexOutOfBoundsExcep 阅读全文
posted @ 2019-05-08 16:20 Marydon 阅读(18511) 评论(0) 推荐(0) 编辑
摘要:1.情景展示 当使用canvas 将图片转为base64报错信息如下: Uncaught DOMException: Failed to execute 'toDataURL' on 'HTMLCanvasElement': Tainted canvases may not be exported 阅读全文
posted @ 2019-04-16 17:24 Marydon 阅读(23316) 评论(0) 推荐(0) 编辑
摘要:1.情景展示 eclipse中,spring配置文件报错信息如下: 配置文件头部引用信息为: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns 阅读全文
posted @ 2019-04-03 14:37 Marydon 阅读(2640) 评论(0) 推荐(0) 编辑
摘要:1.情景展示 java内存溢出异常,将程序代码问题排除在外,如何增大JVM的使用内存? 2.解决方案 在eclipse中的解决办法:增大你要运行的测试类的内存分配。 点击运行或debug按钮旁的倒三角--》Run Configurations... 默认选中的就是你刚才报错的测试类,如果没有按照这种 阅读全文
posted @ 2018-12-11 18:04 Marydon 阅读(440) 评论(0) 推荐(0) 编辑
摘要:Created by Marydon on 1.情景展示 在eclipse中切换jdk版本后,报错信息为:exception Access restriction: The type 'BASE64Encoder' is not API 2.解决方案 选中项目右键-->Build Path-->Co 阅读全文
posted @ 2018-09-29 09:18 Marydon 阅读(873) 评论(0) 推荐(0) 编辑
摘要:exception java.lang.NoClassDefFoundError: Could not initialize class sun.awt.X11GraphicsEnvironment CreationTime--2018年9月5日17点09分 Author:Marydon 1.情景展 阅读全文
posted @ 2018-09-05 17:28 Marydon 阅读(2465) 评论(0) 推荐(0) 编辑
摘要:exeption ORA-00907: missing right parenthesis CreationTime--2018年8月16日11点11分 Author:Marydon 1.情景展示 oracle存储过程 动态sql调用,调用失败: 2.原因分析 在oracl数据库中,ddl表示数据库 阅读全文
posted @ 2018-08-16 11:16 Marydon 阅读(2347) 评论(0) 推荐(0) 编辑
摘要:exception ORA-00923: FROM keyword not found where expected CreationTime--2018年8月16日10点41分 Author:Marydon 1.情景展示 oracle存储过程 动态sql调用,调用失败: 2.原因分析 在oracl 阅读全文
posted @ 2018-08-16 11:06 Marydon 阅读(3216) 评论(0) 推荐(0) 编辑
摘要:exception PLS-00403: expression 'V_END' cannot be used as an INTO-target of a SELECT/FETCH statement CreationTime--2018年8月16日09点22分 Author:Marydon 1.情 阅读全文
posted @ 2018-08-16 09:33 Marydon 阅读(1552) 评论(0) 推荐(0) 编辑
摘要:exception PLS-00103: Encountered the symbol "(" when expecting one of the following: CreationTime--2018年8月16日09点15分 Author:Marydon 1.情景展示 oracle存储过程入参 阅读全文
posted @ 2018-08-16 09:19 Marydon 阅读(10789) 评论(0) 推荐(0) 编辑
摘要:exception PLS-00215: String length constraints must be in range (1 .. 32767) CreationTime--2018年8月16日08点49分 Author:Marydon 1.情景展示 存储过程声明变量时,编译报错信息如下: 阅读全文
posted @ 2018-08-16 08:55 Marydon 阅读(1848) 评论(2) 推荐(0) 编辑
摘要:exception javax.crypto.BadPaddingException: Given final block not properly padded CreationTime--2018年8月10日14点46分 Author:Marydon 1.情景还原 linux系统下,AES解密失 阅读全文
posted @ 2018-08-10 15:18 Marydon 阅读(1079) 评论(0) 推荐(0) 编辑
摘要:http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application CreationTime--2018年8月6日15点16分 A 阅读全文
posted @ 2018-08-06 15:58 Marydon 阅读(421) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示