
遇到的问题
l_h_h_刘
这个作者很懒,什么都没留下…
展开
-
【neo4j登录报错】Neo.ClientError.Security
neo4j 登录报错原创 2022-09-20 14:17:59 · 5548 阅读 · 1 评论 -
安装pyspider遇到Traceback (most recent call last)问题
安装pyspider,遇到Traceback (most recent call last)错误原创 2022-06-30 10:25:01 · 1460 阅读 · 0 评论 -
clickhouse authentication failed
Caused by: java.lang.Throwable: Code: 516, e.displayText() = DB::Exception: Received from 80.12.64.91:9000. DB::Exception: default: Authentication failed: password is incorrect or there is no user with such name. (version 20.8.3.18)原创 2021-05-29 21:34:49 · 3042 阅读 · 1 评论 -
The Tomcat connector configured to listen on port 8082 failed to start
原因端口被占用了原创 2020-04-17 11:45:56 · 465 阅读 · 0 评论 -
springboot 单元测试报错MergedAnnotations$SearchStrategy
java.lang.NoClassDefFoundError: org/springframework/core/annotation/MergedAnnotations$SearchStrategy请检查包#只要导入此包,请检查其它test 包,并将其移除多余包。<dependency> <groupId>org.springframewor...原创 2019-11-24 23:31:16 · 9059 阅读 · 1 评论 -
遇到问题--ORA-01795: maximum number of expressions in a list is 1000
解决mybatis in 查询 超过 一千的问题原来代码:<if test="sessionIdList!= null and sessionIdList.size > 0"> and a.robot_id in <foreach collection="sessionIdList" index="index" item="item" open="...原创 2019-11-18 14:51:17 · 592 阅读 · 0 评论 -
java.sql.SQLException: ORA-24816: 在实际的 LONG 或 LOB 列之后提供了扩展的非 LONG 绑定数据
我是 execl 导入 出现 这样的报错,因为导入 当中有 clob 类型。之前 导入也是正常,没有报错,不知今天导入突然来这样的错误。刚开始我第一想法是 检查 字段长度,检查每个字段都没有超出数据库设定的长度。看了其它人的文章 说原因是在最后insert到oracle表的时候,类型为LONG 或 LOB (我的就是clob类型)的列,意思 CLOB 后面 还有其它类型 如 (v...原创 2019-11-14 14:48:59 · 2071 阅读 · 0 评论 -
the tomcat connector configured to listen on port 8080 failed to start the port may already be in us
the tomcat connector configured to listen on port 8080 failed to start the port may already be in user or the connector may be misconfigured配置为监听端口8080的tomcat连接器启动失败,端口可能已经在用户中,或者连接器可能配置错误...原创 2019-10-17 10:37:22 · 856 阅读 · 0 评论 -
使用list去重复,导致此UnsupportedOperationException() 异常
发生错误事由: StringSplitUtil.duplicateRemovalList(Arrays.asList("1","1"))/** * list去重复 * @param <T> * @return */public static <T> List<T> duplicateRemovalList(Lis...原创 2019-10-16 09:56:04 · 224 阅读 · 1 评论 -
java.sql.SQLSyntaxErrorException: ORA-00904: "STOPENTITY0_"."GGID": 标识符无效 could not extract Result
问题报错:java.sql.SQLSyntaxErrorException: ORA-00904: "STOPENTITY0_"."GGID": 标识符无效 could not extract Result 结果集不能提取解决方案:成功的图片Oracle数据entity 的属性结果Oracle 的字段名 entity的属...原创 2018-06-28 18:35:59 · 1532 阅读 · 0 评论 -
localhost 将您重定向的次数过多。 尝试清除 Cookie.
事件:原来spring 框架 改web 项目名 导致这样的问题出现,原来web 项目名是dev_plat ,后改成ylzbigdata_kb。解决方案: 1.Ctrl+H 搜索 2.搜索的文件改为新的项目名3.移除原来的项目,重新add ,clean 一下To...原创 2018-06-26 09:53:38 · 33679 阅读 · 2 评论 -
ajaxfileupload文件上传带参数,json序列化到后台!
ajaxfileupload方法传文件带上json数据,到controller这么都是接受到"{"这个符号.方法一、自己写的方法htmlvar f2= { "a" : "123", "b" : policyArticleType, "c" : $("#policyTitle").val(),...原创 2018-10-12 20:20:35 · 2967 阅读 · 0 评论 -
前端传值,后台接收乱码
前端打印:后台打印:查找问题:解决方案:注意: 前端ajax 用的是form Data形式,后台就要用 entity 对象形式接收。 前端ajax 用的是 json 形式,后台用 @RequestBody 形式接收。 ...原创 2018-12-25 11:46:07 · 1538 阅读 · 0 评论 -
svn 出现 is forbidden by the server
如果不是冲突问题,请检查权限问题。原创 2019-05-13 16:56:34 · 19272 阅读 · 0 评论 -
vue css 样式本页面不起作用
问题: 解决原创 2019-05-28 10:01:27 · 3851 阅读 · 0 评论 -
this.$refs 为空问题
子组件<sonCompent v-if="false"> </sonCompent>注意:1.v-if 会导致 this.$refs 为空 2.使用this.$nextTick(() => {}) 也是为空解决方案:方法1. 将v-if 改为 v-show ,再使用 this.$nextTick不过还是有问题,第一次点开为未定义...原创 2019-06-12 23:14:39 · 4322 阅读 · 2 评论 -
vue自定义路由重定向
功能:路由重定向跳转页面,我这里主要实现局部刷新。用法:报此错误:Could not install from "@\views\redirect\index" as it does not contain a package.json解决方案:...原创 2019-08-28 01:23:51 · 394 阅读 · 0 评论 -
springboot上传文件 org.apache.tomcat.util.http.fileupload.FileUploadBase$FileSizeLimitExceededException
Maximum upload size exceeded; nested exception is java.lang.IllegalStateException: org.apache.tomcat.util.http.fileupload.FileUploadBase$FileSizeLimitExceededException: The field fileList exceeds its ...原创 2019-09-14 00:50:07 · 1655 阅读 · 0 评论 -
ajaxfileupload 多文件上传问题
一、修改官网ajaxfileupload.js://start----->修改前代码 /* var oldElement = jQuery('#' + fileElementId); var newElement = jQuery(oldElement).clone(); jQuery(oldElement).att...原创 2018-10-15 00:08:11 · 3379 阅读 · 0 评论 -
dataTable 出现头部标题宽度问题
出现的问题:js 调用方法:var fqCustomerTable = null; //材料的查询 function doSearchFq() { if (fqCustomerTable != null) { fqCustomerTable.fnClearTable(0); fqCustomerTable....原创 2018-12-20 17:29:51 · 4290 阅读 · 1 评论