
BUG
小小志秩
Think Twice,Code Once.
展开
-
报错java.io.NotSerializableException
java.io.NotSerializableException: zz.practice.domain.Upload 该类没有实现序列化接口,添加implements Serializable 即可。原创 2019-03-10 08:52:19 · 880 阅读 · 0 评论 -
Shiro报错UnavailableSecurityManagerException
运行整合了shiro的spring报错:org.apache.shiro.UnavailableSecurityManagerException: No SecurityManager accessible to the calling code,either bound to the org.apache.shiro.util.ThreadContext or as a vm static s...原创 2019-04-01 23:02:12 · 3816 阅读 · 0 评论 -
easyPOI报错NoSuchMethodError
使用easyPOI报错,Java.lang.NoSuchMethodError: org.apache.poi.ss.usermodel.Sheet.getDrawingPatriarch()该问题是因为依赖包的版本不兼容问题,因此我将版本都改为最高,向下兼容:<dependency> <groupId>org.apache.poi</groupId>...原创 2019-04-01 23:03:01 · 2565 阅读 · 0 评论 -
前端报错400-
因为日期出现400-的问题,则需要在domain实例层添加相应的注解,转换日期格式,使用spring、SpringMVC、easyUI框架写的仓库后台管理系统,测试的时候若是没有报错,订单列表能够展示,涉及到订单详情的数据展示失败,打开订单详情并无数据展示,那么这时候就要考虑实例层是否定义错了字段属性,以及控制层是否写错方法,导致数据写入数据库失败,回填表单失效。...原创 2019-04-01 23:03:29 · 754 阅读 · 0 评论 -
保存数据报错TransientPropertyValueException
保存数据报错:org.hibernate.TransientPropertyValueException: object references an unsaved transient instance - save the transient instance before flushing : zz.ibs.domain.ShowMenu.parent -> zz.ibs.domain...原创 2019-04-01 23:04:50 · 911 阅读 · 0 评论 -
使用mapper报错BindingException
在调用mapper方法的时候,报错:ache.ibatis.binding.BindingException: Type interface dynamicDao.dao.UserDao is not known to the MapperRegistry.解决该错误:出现该错误是因为你在xml所定义的mapper接口路径和实际中写的不一致,比如说你是当前包下的mapper,然而在对应的ma...原创 2019-04-13 16:46:43 · 903 阅读 · 0 评论 -
前端传参报错400-
报错400The request sent by the client was syntactically incorrect,这个翻译过来是请求参数语法错误,其实就是SpringMVC在绑定传参的时候出错,也就是前端的数据和后台的数据类型有出入,导致自动注入失败。排错的方式首先对应查看controller层方法里面的对象名和前端的传参对象名是否一致,若是一致,则一个参数一个参数的进行空值传参排...原创 2019-04-18 16:34:05 · 1837 阅读 · 0 评论 -
elementUI时间控件传参Date类型封装报错400-
Date封装报错400-这个错误是最烦的,400-错误表示请求语法传参错误,在查看了代码一致性,以及在需要传参的属性set方法上写了@DateTimeFormat(pattern:yyyy-MM-dd)注解之后,一般来说就解决了,因为SpringMVC的这个注解能够自动解析从前端传过来的时间类型参数,注入到对象之中使用,若是使用的不是这个框架,那么也可以自己写时间格式化的方法去处理,达到的效果和...原创 2019-04-18 20:04:11 · 2902 阅读 · 0 评论 -
elementUI之表单回填报错400-
请勿胡乱使用表单回填最近使用了element+vue来写后台项目,后台研发的我,用着vue感觉不要太舒服。在界面表单回填数据进行编辑的时候,按钮直接设置为@click="handleEdit(scope.$index, scope.row)"然后在methods里面,编辑按钮事件为//编辑 handleEdit(index, row) { this.order = row;//将当前数据填...原创 2019-04-24 11:58:31 · 1084 阅读 · 0 评论 -
FeignClient调用redisClient报错404
错误是这个:FeignException: status 404 reading RedisClient#get(String),造成的原因之一是传参失败,没找到对应的参数,所以直接在feign服务调用方的方法上面添加注解@RequestParam(“对应的参数名”),如下注解就可以了。@FeignClient(value = "GOBUY-COMMON")public interface R...原创 2019-05-18 17:18:06 · 1114 阅读 · 0 评论 -
报错hibernate.MappingException
在给一个实体类添加了list集合(private List childList = new ArrayList();)属性之后,启动报错org.hibernate.MappingException: Could not determine type for: java.util.List, at table: T_REVERTS, for columns: [org.hibernate.mappi...原创 2019-04-01 23:01:34 · 738 阅读 · 0 评论 -
启动Idea后懒加载serialize报错
是因为多表连接之后,有的字段加上了懒加载属性,没有序列化,编译报错:Message Could not write conteibernate proxy pojo javassist.JstLazyInitia lizer and no prescovered to create bean serialize cn. itsource ibsutils. UIPage[ "rows ]->...原创 2019-04-01 23:00:17 · 373 阅读 · 0 评论 -
多表关联下,某个数据未添加进数据库
多表关联下,某个数据未添加进入数据库,也没报错,其他数据都可以添加。多表关联,对其中一个表进行编辑的操作时,需要将关联字段设为空值,因为一开始没有用到这几个字段,不设为空值会报错,那么当我们用到该字段进行操作时,若还是将其设为空值,则会导致数据添加不进去,因此需要将该字段设为空的代码删除。案例如下:/** * @ModelAttribute("updateStockincomebill")是...原创 2019-04-05 20:34:54 · 489 阅读 · 0 评论 -
启动Tomcat报错ClassNotFoundException
启动Tomcat报错:org.apache.catalina.core.StandardContext.listenerStart Error configuring application listener of class org.springframework.web.context.ContextLoaderListenerjava.lang.ClassNotFoundExceptio...原创 2019-03-21 00:04:50 · 1043 阅读 · 0 评论 -
Idea报错Error:java: Compilation failed
使用Idea报错Error:java: Compilation failed: internal java compiler error。解决:更改.idea/compiler.xml文件<bytecodeTargetLevel> <module name="common_main" target="1.8" /> <module nam...原创 2019-03-21 00:08:05 · 502 阅读 · 0 评论 -
启动Spring报错class path resource [spring.xml]
启动Spring报错class path resource [spring.xml] cannot be opened because it does not exist这是找不到spring.xml的字节码文件,就是.classes文件里面没有生成这个xml字节码文件,Idea工具中,直接点击File打开Project Structure,删除spring下面已经生成的配置信息(不会删除源文件...原创 2019-03-21 00:08:49 · 2135 阅读 · 0 评论 -
Idea中报错BeanCreationException
Idea中报错BeanCreationException: Error creating bean with name entityManagerFactory直接查看最后一个cause by(idea报错信息,因为是逆向报错工程结果,所以从最后一个causeBy查看。Eclipse则相反。),若是说明了是AnnotationException,则是注解没有自动注入成功,注意看报错信息,更改错误...原创 2019-03-21 00:10:09 · 1202 阅读 · 0 评论 -
nested exception is java.lang.NullPointerException
今天给同事排错,在Idea热启动模式下,启动Spring项目报错:servlet [springMVC] in context with path [] threw exception: Request processing failed; nested exception is java.lang.NullPointerException这时候我去看了下自己项目结构下的resources文件...原创 2019-03-21 23:20:03 · 12040 阅读 · 0 评论 -
报错HibernateException: from n to n
具体报错:identifier of an instance of zz.ibs.domain.Permission was altered from 3 to 4; nested exception is org.hibernate.HibernateException: identifier of an instance of zz.ibs.domain.Permission was alt...原创 2019-03-26 11:51:03 · 204 阅读 · 0 评论 -
更改数据报错SQLException: Connection is read-only.
近日在更改数据的时候,idea报错:org.apache.catalina.core.StandardWrapperValve.invoke Servlet.service() for servlet [springMVC] in context with path [] threw exception [Request processing failed; nested exception i...原创 2019-04-04 17:05:21 · 880 阅读 · 0 评论 -
新增数据报错ConstraintViolationException
近日新增数据报错:could not execute statement; SQL [n/a]; constraint [null]; nested exception is org.hibernate.exception.ConstraintViolationException: could not execute statement.该错误是关联的用户名不能为空,因此直接在该控制层,新增数...原创 2019-04-04 17:07:30 · 16153 阅读 · 1 评论 -
修改数据报错No sission
在Datagrid上展示数据,数据中某个属性是懒加载对象的时候,会出现no session报错的问题,只需要在web.xml中修改增加如下代码即可:<!-- 解决no Session问题--> <filter> <filter-name>openEntityManagerInViewFilter</filter-name> ...原创 2019-04-04 17:10:00 · 155 阅读 · 0 评论 -
后台查询oracle数据库为空
NULL的可能性之一最近使用oracle数据库,后台写sql查询,查询语句直接放进oracle里面没问题,后台代码就是查不出来,后来仔细一看,拼接语句的问题,拼接语句是从oracle里面直接复制过来的,末尾有个分号,把分号去掉就可以了...原创 2019-07-30 14:48:46 · 373 阅读 · 0 评论