日常报错解决集合
施小辉辉辉
这个作者很懒,什么都没留下…
展开
-
关于log4j报错ERROR StatusLogger No log4j2 configuration file found. Using default configuration: logging
在进行单元测试的时候,出现log4j报错ERROR StatusLogger No log4j2 configuration file found. Using default configuration: logging only errors to the console. 在多方查找之后发现原因所在:在进行单元测试的时候没有配置log4j2.xml的文件:并且,lo...原创 2019-04-09 19:58:50 · 3759 阅读 · 0 评论 -
JSP页面运行却显示源码
使用SpringMVC跳转页面,但是页面显示的缺失JSP源码,如下: 通过网上查找各种原因,最后找到解决方法,如下: 问题是因为在web.xml文件中的"/*",用该形式访问jsp文件时,星号“*”会把*.jsp,*.sql,*.txt都当做txt处理。结果就是直接在浏览器加载了jsp源码。 所以,只要把星号“*”去掉,改为别种访问形式。如“。do”、“/...原创 2019-09-26 09:43:20 · 16280 阅读 · 4 评论 -
idea中报错private xx is never assigned
在读取xml文件后,对属性进行注入时,发现其中一个变量显示Private xx is never assigned,且该变量为null。注意:初始化时,已经对该xml文件进行初始化读取。如test.xml文件:<beans> <bean> <property name="test"> <list>...原创 2019-09-26 20:45:36 · 3827 阅读 · 0 评论 -
Error creating bean with name 'userController': Unsatisfied dependency expressed through field 'user
在Idea的spring工程里,经常会遇到Could not autowire. No beans of 'xxxx' type found的错误提示。 错误提示如下所示:控制台报错如下:org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with...原创 2019-10-08 16:05:18 · 47281 阅读 · 8 评论 -
Invalid bound statement (not found)错误的几种解决方法
1.检查xml文件所在package名称是否和Mapper interface所在的包名完全一致,包括大小写<mapper namespace="com.cc.mapper.UserMapper"><!-- 若mapper的namespace写的不对!!!注意修改。-->2.UserMapper的方法在UserMapper.xml中没有,然后执行UserMapp...原创 2019-10-08 16:24:42 · 16116 阅读 · 1 评论 -
解决java.lang.IllegalArgumentException: No converter found for return value of type: class java.util
Controller方法中return 数据时候,适用@ResponseBody注解进行返回List<对象>的json数据时出现了:nested exception is java.lang.IllegalArgumentException: No converter found for return value of type: class java.util.Ar...原创 2019-10-08 16:49:12 · 551 阅读 · 0 评论 -
406– 不可接收报错解决方法
https://blog.csdn.net/zhangtxsir/article/details/79521810转载 2019-10-08 16:53:45 · 3832 阅读 · 0 评论 -
Parameter '*' not found. Available parameters are [0, 1, param1, param2]解决办法
出现该报错的大部分原因是mapper.xml文件中的参数没有对应匹配。当传入参数只有一个时候,就不需要设定@Param。接口参数只有一个,不管接口参数名是什么,这个时候#{xxx}没有限制,可以是0,param1,也可以是aaa,bbb。可以不加注解。当传入的的参数>1的时候,就会出现该报错:mybatis的参数集就是上边说的默认值[0, 1, param1, param2],如...原创 2019-10-10 11:42:09 · 34101 阅读 · 0 评论