#ME

Flex contextMenu

没想到再这里也要跌跌撞撞。这个东西我很久之前就懂了的啊! 最开始是这么写的:privatefunctioninit():void{varcontextMenu:ContextMenu=newContextMenu();varcontextMenuItem:ContextMenuItem=newContextM...
代码星球 ·2020-04-06

Required MultipartFile parameter 'file' is not present

在写一个api的接口时,需要调用者上传文件,类型为:MultipartFile。我在使用postman测试时,服务器报错:具体的错误信息为:HTTPStatus400-RequiredMultipartFileparameter'files'isnotpresenttypeStatusreportmessageRequ...

java.lang.NoClassDefFoundError: org/springframework/core/ErrorCoded

日志内容如下:java.lang.NoClassDefFoundError:org/springframework/core/ErrorCoded   atjava.lang.ClassLoader.defineClass1(NativeMethod)   a...

ssh启动报错:org.dom4j.DocumentException: Connection timed out: connect Nested exception: Connection timed out: connect

ssh项目启动报错:    org.dom4j.DocumentException:Connectiontimedout:connectNestedexception:Connectiontimedout:connect一开始以为是数据库连接的事,后来发现是hibernate在实体对象映射数据库表的时候出的错解决:  ...

SSH:java.lang.NoSuchMethodError: org.hibernate.Session.getFlushMode()Lorg/hibernate/FlushMode

java.lang.NoSuchMethodError:org.hibernate.Session.getFlushMode()Lorg/hibernate/FlushMode;atorg.springframework.orm.hibernate5.HibernateTemplate.checkWriteOperat...

定时器Quartz ClassNotFound org.springframework.scheduling.quartz.SchedulerFactoryBean

没有添加spring-context-support-3.2.4.RELEASE.jar包pom配置<dependency>    <groupId>org.springframework</groupId>   ...

Caused by: java.lang.ClassNotFoundException: org.springframework.scheduling.quartz.CronTriggerBean

在ssh框架中配置quartz定时器出现:Causedby:java.lang.ClassNotFoundException:org.springframework.scheduling.quartz.CronTriggerBean  atjava.net.URLClassLoader$1.run(...

java.lang.ClassNotFoundException: org.springframework.web.servlet.DispatcherServlet

今天朋友发了个maven项目给我看,问我为什么启动不了。说实话,一直用Jfinal都快不会用spring了…还是决定看看。接收了文件,是maven构建的,打开eclipse,导入maven项目,然后部署到tomcat,启动tomcat,就报错了:“java.lang.ClassNotFound...

Thymeleaf 迭代,if,switch语法

1、Thymeleaf 目标迭代语法:th:each;iterationstatus条件语法:th:if;th:unlessswitch语法:th:switch;th:case;*2、公共模拟SpringBoot后台接口后台逻辑(action)//分页查询   @RequestM...

More than one fragment with the name [spring_web] was found. This is not legal with relative orderin

最近在搭建一个springmvc项目时遇到“Morethanonefragmentwiththename[spring_web]wasfound.Thisisnotlegal...”报错,详细的日志信息如下:……五月08,201911:49:52下午org.apach...
代码星球 ·2020-04-06

解决pandas中打印DataFrame行列显示不全的问题

在使用pandas的DataFrame打印时,如果表太长或者太宽会自动只给前后一些行列,但有时候因为一些需要,可能想看到所有的行列。所以只需要加一下的代码就行了。  #显示所有列pd.set_option('display.max_columns',None)#显示所有行pd.set_option(...

Error:(23, 0) Could not find method implementation() for arguments [directory 'libs'] on object of t

Error:(28,0)Couldnotfindmethodimplementation()forarguments[com.android.support:appcompat-v7:25.3.1]onobjectoftypeorg.gradle.api.internal.artifacts.dsl.dependenc...
代码星球 ·2020-04-06

完美解决: org.apache.ibatis.binding.BindingException Invalid bound statement (not found)

异常描述:org.apache.ibatis.binding.BindingException:Invalidboundstatement(notfound)原因:springboot整合mybatis,在编译时,如果不添加此节点mybatis的mapper.xml文件都会被漏掉,即只会生成mapper对应的class...

rg.hibernate.NonUniqueObjectException: a different object with the same identifier value was already associated with the session:

原先跑TESTCASE的时候没有出错但是跑到整个程序里面,除了这个问题,网上也找了下资料,说是用merge之类的可以解决,因为你这个update的obj和session里面的不用,所以导致此问题。突然石化~~~想到session~~~想到TESTcase的时候没有用事物aop所以每个方法都是一个事物,所以当然没问题,而...
首页上一页...489490491492493...下一页尾页