错误处理
清雨未尽时
清雨入清晨,午时未阳依。
百望夕阳暮,如梦未尽时。
展开
-
项目使用他人IDEA工程端口占用处理方法
一.使用他人IDEA工程时,操作步骤1.删除.idea文件夹2.配置maven file ->setting 3.配置JDKfile->Projectstructure->Platform Settings->SDKS4.更改MySQL 连接密码二、错误处理1.netstat -aon|findstr 8081(查找自己项目占用的端口号) 2.找到对应的端口对应的PID 输入指令找到对应的进程 3. 杀掉该进程 再次启动项目工程4.配置数据URL 5.配置resource点原创 2022-12-04 18:46:10 · 285 阅读 · 0 评论 -
Autojs uicollection 控件click函数不能触发处理
描述:var listData = className("android.widget.TextView").find()for (var i = 0;ivar item = listData[i]text(item.text()).click()}调试不能触发,在python中是没有问题,通过在auto.js悬浮窗口中查看控件信息,看到控件属性clickable=false,这是造成不能触发的关键。解决办法:通过控件的坐标进行触发var listData = classNa原创 2021-06-23 23:08:31 · 3472 阅读 · 2 评论 -
WEditor USB device is offline
手动关闭atx-agent 服务后,启动weditor 一直提示WEditor USB device 192.168.xxx.xxxis offline d原创 2021-06-20 22:25:20 · 1843 阅读 · 0 评论 -
WEditor OSError: [Errno 48]
错误信息kangxgdeMacBook-Pro:~ kangxg$ python3 -m weditorUnknown error: ReadTimeout(ReadTimeoutError("HTTPConnectionPool(host='localhost', port=17310): Read timed out. (read timeout=2.0)",),)listening on http://192.168.0.14:17310Traceback (most recent cal原创 2021-06-20 22:49:15 · 474 阅读 · 0 评论 -
Try to run this command from the system terminal. Make sure that you use the correct version of ‘pip
Pycharm 安装 Pymysql模块错误处理原创 2021-06-02 17:13:07 · 859 阅读 · 0 评论 -
java 后台Map toString() java.lang.NullPointerException: null 错误处理
public RespBean mobileForgetPassword( Map parameters){ String phone = parameters.get("phone").toString();}出现错误java.lang.NullPointerException: null解决办法 String phone = String.valueOf(parameters.get("phone"));原创 2020-11-04 15:36:11 · 719 阅读 · 0 评论 -
Controller返回view错误处理
错误提示:1.avax.servlet.ServletException: Circular view path [privacy]: would dispatch back to the current handler URL [/app/web/privacy] again. Check your ViewResolver setup! (Hint: This may be the result of an unspecified view, due to default view name gen原创 2020-10-28 15:59:20 · 464 阅读 · 0 评论 -
Alamofire “error“ : “Unsupported Media Type“, “status“ : 415 错误处理
自己的Java后台接口是这个样子的:@PostMapping("/app/all/position/list") public RespBean getAllPositionList(@RequestBody AllSearchModel model){ RespBean bean = allService.getAllPositionList(model); return bean; } 移动端swift 代码 s...原创 2020-10-02 22:42:15 · 622 阅读 · 0 评论 -
BCryptPasswordEncoder 用户登录密码加密后对比错误处理
将用户登录将密码加密后与数据库中的用户加密 密码对比始终是错误的代码如下: BCryptPasswordEncoder encoder = new BCryptPasswordEncoder(); String pwd = encoder.encode(user.getPassword()); if(user1.getPassword().equals(pwd) == false){ return "密码错误"; }处理方法 BCryp.原创 2020-06-12 16:20:07 · 4738 阅读 · 0 评论 -
Kingfisher withUnsafeBytes 错误处理
1.错误信息withUnsafeBytes' is deprecated: use `withUnsafeBytes<R>(_: (UnsafeRawBufferPointer) throws -> R) rethrows -> R` instead2.错误位置修改为extension String: KingfisherCompatible { }extension Kingfisher where Base == String { p...原创 2020-05-27 14:35:18 · 846 阅读 · 0 评论 -
xcode11.5 适配 iOS13以下版本的App
用xcode11.5 创建的swift 工程,用模拟器运行一切正常,真机是iOS10 的系统版本,发现运行不了,报了一堆的错这是因为现在多了一个SceneDelegate.swift,启动完成后在这里创建应用视图1.解决视图报错,SceneDelegate.swift 头部添加@available(iOS 13.0, *)@available(iOS 13.0, *)class SceneDelegate: UIResponder, UIWindowSceneDelegate {..原创 2020-05-27 00:44:58 · 1425 阅读 · 1 评论 -
org.springframework.http.converter.HttpMessageNotReadableException: Required request body 错误处理
[org.springframework.http.converter.HttpMessageNotReadableException: Required request body is missing这是因为@RequestBody 不支持get方法所致@GetMapping("/doQuery")public RespPageBean getUsersByPage(@Reques...原创 2020-03-22 14:50:33 · 9604 阅读 · 0 评论 -
关闭 el-dialog 视图后,网页不能滑动问题处理
1.问题出现的原因 组件内用el-table 组件显示多条数据,网页 可滑动浏览,点击列表内某一个图片,用el-dialog模态组件展示大图。关闭后el-dialog组件后,页面不能滑动,多余部分被裁剪。2.这个原并不是页面代码的问题,用Chrome浏览器检查页面元素, 没有打开el-dialog 组件前是: 关闭组件后body 变成了 overflow:...原创 2020-03-21 01:06:39 · 1072 阅读 · 0 评论 -
Failed to convert from type [java.lang.String] to type [java.util.Date] for value 错误处理
Vue 前端向Java后台传递时间格式数据,进行数据查询,出现这个错误信息Resolved [org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'jav...原创 2020-03-20 16:06:38 · 12641 阅读 · 1 评论 -
check the manual that corresponds to your MySQL server version for the right syntax to use near 错误处理
Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near...原创 2020-03-17 16:12:29 · 4283 阅读 · 0 评论 -
Invalid prop: type check failed
错误出处:1.子组件export default { name: 'EditApp', props: { form: { type: Object, required: true, default: Object } }}2.父组件export default { name: 'Home', c...原创 2020-03-16 22:46:31 · 591 阅读 · 0 评论 -
Element-UI @click 事件不能触发问题处理
<el-card class="el-card" :key="index" @click="handleEdit"> 点击卡片不能出发时间 ,在按钮上可以出发 <el-button icon="el-icon-circle-plus" circle @click="handleEdit"></el-button> 解决办法...原创 2020-03-16 01:42:43 · 3335 阅读 · 0 评论 -
The template root requires exactly one element.(vue/valid-template-root)错误处理
在使用自定义组件的时候 出现的错误<template> <el-row :gutter="20" class="el-row"> </el-row> <EditApp ></EditApp></template>因为Vue模版只能有一个根节点,所以需要改动一下即可<templat...原创 2020-03-16 01:00:28 · 8085 阅读 · 0 评论 -
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DROP PROCEDURE IF EXISTS `addDep` */原创 2020-03-13 23:35:02 · 1843 阅读 · 0 评论 -
Error:Maven Resources Compiler: Maven project configuration required for module ' isn't invalid
Compilation of Maven projects is supported only if external build is started from an IDE.原创 2020-03-07 22:30:45 · 487 阅读 · 0 评论 -
Redis NOAUTH Authentication required错误处理
kangxgdeMacBook-Pro:~ kangxg$ redis-cli -h 192.168.0.104192.168.0.104:6379> keys *(error) NOAUTH Authentication required.这是因为设置了密码的原因,需要以密码访问才可以,处理办法1.直接 访问的时候加入密码redis-cli -h 192.168.0.1...原创 2020-03-06 15:26:08 · 679 阅读 · 0 评论 -
Could not connect to Redis at 127.0.0.1:6379: Connection refused
redis 配置文件里绑定IP后出现的这个问题redis-cli访问出现的错误提示,因为配置文件里没绑定127.0.0.1 所以不能以默认的方式访问,需要指定IP才可以redis-cli -h 192.168.0.104这时候就可以了...原创 2020-03-06 15:21:06 · 344 阅读 · 0 评论 -
Warning: Invalid resolution 0 dpi. Using 70 instead.
解决方法Tesseract instance = new Tesseract();instance.setTessVariable("user_defined_dpi", "300");或者设为instance.setTessVariable("user_defined_dpi", "300");原创 2020-03-04 19:01:32 · 12443 阅读 · 3 评论 -
Unable to load library 'tesseract'
在Mac上使用tess4j 报的这个错误Exception in thread "pool-1-thread-1" java.lang.UnsatisfiedLinkError: Unable to load library 'tesseract': Native library (darwin/libtesseract.dylib) not found in resource path (...原创 2020-03-04 19:00:30 · 4056 阅读 · 0 评论 -
Error opening data file ./eng.traineddata
在Mac上安装tesseract 成功后,使用tess4j 出现这个错误Error opening data file ./eng.traineddataPlease make sure the TESSDATA_PREFIX environment variable is set to your "tessdata" directory.Failed loading language...原创 2020-03-04 17:19:24 · 1959 阅读 · 1 评论 -
重写log4j HTMLLayout及日志信息自定义处理
衔接https://blog.csdn.net/kangguang/article/details/104589491中中文字符乱码问题,进行重写HTMLLayout1.添加HTMLLayout的子类package com.kxg.spadminclient;import java.text.SimpleDateFormat;import org.apache.log4j.HTM...原创 2020-03-01 12:33:27 · 543 阅读 · 0 评论 -
Tomcat 访问log4j HTML 日志文件中文字符乱码问题处理
在 上篇https://blog.csdn.net/kangguang/article/details/104584279 中错误级别等日志文件输出格式为:htmllog4j.appender.E.layout = org.apache.log4j.HTMLLayoutlog4j.appender.E.layout.Title =错误日志在生成的文件目录中,直接打开 里面...原创 2020-03-01 12:24:55 · 296 阅读 · 0 评论 -
Tomcat localhost:8080 不能访问处理
进入 ApacheTomcat ->bin->sudo shstartup.sh启动正常,但是不能正常访问,连Apache 的index页面也不能访问原因一 服务不正常,shutdown 后再重新启动,如果还是不能正常访问,进入原因二原因 二 8080端口被占用 :执行命令 sudo lsof -i:8095COMMAND PID USER FD T...原创 2020-02-29 00:27:56 · 501 阅读 · 0 评论 -
Channel shutdown: channel error; protocol method 错误处理
错误信息Channel shutdown: channel error; protocol method: #method<channel.close>(reply-code=406, reply-text=PRECONDITION_FAILED - inequivalent arg 'type' for exchange 'kxg-fanout' in vhost '/': r...原创 2020-02-28 14:06:31 · 40497 阅读 · 3 评论 -
org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused
使用 AMQP RabbitMQ 出现的错误org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused这个错误是与 AMQP 服务 连接错误所致spring.rabbitmq.host=localhostspring.rabbitmq.post=5672...原创 2020-02-28 13:23:46 · 1594 阅读 · 0 评论 -
Quartz使用错误A component required a bean named 'MyFirstJob' that could not be found
错误信息***************************APPLICATION FAILED TO START***************************Description:A component required a bean named 'MyFirstJob' that could not be found.Action:Consider de...原创 2020-02-26 12:17:39 · 398 阅读 · 0 评论 -
Consider defining a bean of type 'com.kxg.swagger.mapper.UserMapper' in your configuration. 问题解决
一、错误信息二、定位到UserMapperpackage com.kxg.swagger.mapper;import com.kxg.swagger.entity.Role;import com.kxg.swagger.entity.User;import org.mapstruct.Mapper;import java.util.List;@Mapperpubli...原创 2020-02-21 23:27:58 · 1669 阅读 · 0 评论