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