xxx

Command line is too long. Shorten command line for xxx or also for Spring Boot default configuration 主要是命令行太长了,导致项目启动不成功

Command line is too long. Shorten command line for xxx or also for Spring Boot default configuration 主要是命令行太长了,导致项目启动不成功 目录 一、情景再现: 二、分析原因: 三、解决方法: 1、 ......
line configuration for 命令 Command

The file “/xx/xxx/xxxx.dita”is outside the scope of the input dita/map directory.

如果路径没错的话,就是引用的内容不在这个ditamap之内,也就是引用的内容不能在被引用时单独生成。 还有个错误:编辑器里面可以正常加载路径,但dita-ot始终说找不到的某个dita文件的错误,我以为是缓存的问题,其实可能是之前引用的地方不止一处,文件加或者文件改名之后没有将其他地方改完,可以用f ......
dita directory the outside input

2023-12-02 cannot found module 'xxx'

问题描述:运行命令报错找不到模块 原因:你本地没装好依赖 解决方案:删掉依赖,重新build 但有时事实并不如此简单,就比如我记录这个bug,不仅仅是删掉依赖,重新build就可以了,还需要找到一个lock文件。 如:yarn.lock,如果没有该文件,那么你拉下来的依赖的版本依旧不符合需求,原因就 ......
cannot module found 2023 39

android开发aar包或者jar包出现类重复问题Caused by: java.lang.RuntimeException: Duplicate class found in modules xxx.aar and xxx.aar终极解决方法

如果是仓库依赖的方式直接使用exclude语句移除相同的依赖库即可,如下: implementation("org.java-websocket:Java-WebSocket:1.5.2") { exclude group: 'org.slf4j', module: 'slf4j-api' //ex ......
aar RuntimeException Duplicate xxx 终极

mybatis mysql Data truncation: Incorrect integer value: '' for column 'xxx' at row 1

com.mysql.jdbc.MysqlDataTruncation: Data truncation: Incorrect integer value: '' for column 'n_before_group_id' at row 1 mybatis foreach 插入时出现这个报错,原因是 ......
39 truncation Incorrect mybatis integer

Delete'cr'[prettier / prettier] 运行项目报错error Replace `xxx` with `··xxx·` prettier/prettier 解决办法

问题:在运行项目时报错 原因: linux系统和Windows系统换行符不一致,要根据实际情况切换LF或CRLF,如果不想每个页面切换,可用以下方法 解决: 在eslintrc.js文件的rules中添加 "prettier/prettier": "off" 也可参照这个网址 https://www ......
prettier 183 xxx Replace 办法

idea报错:XXX already exist in project. Please, specify another name.

问题: idea报错:XXX already exist in project. Please, specify another name. 并且左侧目录中并没有看见同名存在文件 解决方法: 1.打开File->Project Structure 2.点击Modules->找到报错说存在的模块->点 ......
already another project specify Please

XXX

溢洪道视频 水位尺 渗压计01 渗压计02 渗压计03 渗压计04 渗压计05 渗压计06 渗压计07 渗压计08 渗压计09 GNSS测站01 GNSS测站02 GNSS测站03 GNSS基站 溢洪道视频 水位尺 三要素 开箱设备配件拍照 主要设备拍照 机箱内部拍照 设备安装完成拍照 隐蔽工程01 ......
XXX

日常踩坑_maven打包显示user id 'xxx' is too big

背景提要 本身在win10下的环境,maven是可以正常打包的 但在一切未动的条件下,将项目放到了linux环境下,发现报了一个莫名其妙的错 goal org.apache.maven.plugins:maven-assembly-plugin:3.1.1:single failed: user i ......
maven 39 user big too

MyBatis `<include refid="XXX">`标签详解

MyBatis <include refid="XXX">标签详解 MyBatis作为一种优秀的持久化框架,提供了丰富的XML配置选项,其中<include>标签是一个非常有用的特性,用于引入SQL片段,提高代码的可维护性和可读性。 解释 <include>标签用于引用SQL代码片段。 refid是 ......
quot MyBatis include 标签 refid

[ABC329C] Count xxx 题解

插曲 因为本人看错了题面,买看到一个子串只包含一种字母,所以切完 D 和 E 才回来发现很简单。 问题翻译 给你一个长度为 \(N\) 的字符串 \(S\),由小写英文字母组成。 求 \(S\) 的非空子串中有多少个是一个字符的重复。在这里,作为字符串的两个子串是相等的,即使它们是以不同的方式得到的 ......
题解 Count 329C ABC 329

2023-11-21 {“errcode”:40029,“errmsg”:“invalid code, rid: xxx”} ==》后端保存的appsecret 和 appid 与前端的 appid不匹配导致,更新后端保存的appsecret 和 appid即可

今天上午登一下小程序,登录失败,后端调查发现是微信登录的时候报了这个错误: {“errcode”:40029,“errmsg”:“invalid code, rid: xxx”} 原因:后端保存的appsecret 和 appid 与前端的 appid不匹配导致。 解决方案:更新后端保存的appse ......
appid appsecret 前端 errcode invalid

强制关闭xxx进程

目录基本语法举个🌰 基本语法 kill -9 $(ps faxu | grep -w 进程关键字 | grep -v grep | grep 进程关键字 | awk '{print $2}') 举个🌰 关闭/opt目录下Tomcat进程: kill -9 $(ps faxu | grep -w ......
进程 xxx

java: 程序包xxx.xxx.xxx不存在

1.问题 在拷贝进来一个文件夹/文件进入项目后,发生报错:java: 程序包com.itheima.mp.domain.query不存在 2.解决 这里主要是由于我们的文件直接拷贝进来,导致编译的时候无法找到。 点开右侧的Maven管理栏,在生命周期一栏选择clean(执行"Maven Clean" ......
xxx 程序 java

【springboot项目运行报错】亲测有效 Parameter 0 of constructor in xxx.xxx.Controller required a bean 0

Parameter 0 of constructor in me.zhengjie.modules.system.rest.DictDetailController required a bean of type 'me.zhengjie.modules.system.service.DictDet ......

Ubuntu18.04 打开终端报错: ERROR: ld.so: object ‘xxx.so‘ from LD_PRELOAD cannot be preloaded 解决办法

1、问题现象在文件界面打开终端的时候,突然发现开头有一堆报错ERROR: ld.so: object './envlib.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.ERROR: ......
LD_PRELOAD 终端 preloaded PRELOAD 办法

Git push到gerrit时报错change xxx closed

Git push到gerrit时报错change xxx closed 报错日志: To ssh://xxxx ! [remote rejected] HEAD -> refs/for/master (change http://xxxxm/+/96107 closed) 可以看到这个提交已经clo ......
时报 gerrit change closed push

git提交或克隆报错fatal: unable to access 'https://github.com/xxx/': Failed to connect to github.com port 443 after 21087 ms: Couldn't connect to server

1.问题原因 报错信息: fatal: unable to access 'https://github.com/xxx/autowrite.git/': OpenSSL SSL_read: Connection was reset, errno 10054 又或者 fatal: unable to ......
connect github to com 39

Debug - MySQL - Err 1062 duplicate entry xxxx for key xxx

可能原因1 脏数据存在 可能原因2 当你手动刷sql修改表结构时,可能这张表正有写库操作。 一边写库一边修改表结构,就会出现这种错误。。。原因未知,猜测和锁表有关系 两次错误提示: 详细的数据是不一样的....而且日期是今天的,说明不是脏数据 等待写库程序结束,再刷表就没有报错了 ......
duplicate Debug MySQL entry 1062

亲测可行,Android Studio 查看源码出现 Source for ‘Android API xxx Platform’ not found 的解决方法

亲测可行,Android Studio 查看源码出现 Source for ‘Android API xxx Platform’ not found 的解决方法 如标题中的问题,产生的原因就是 SDK 源码目录下找不到对应版本的源码文件。解决方案一般就是下载对应版本的源码文件即可。 这里主要是另一种 ......
Android 源码 Platform 方法 Studio

pip3 install xxx, Fatal error in launcher: Unable to create process using '"C:\Software\Python310\python.exe" "D:\xxxx\Software\Python310\Scripts\pip3.exe" install shutil': ???????????

重装系统后, 移动了python所在目录后, 使用 pip3 install xx 提示: Fatal error in launcher: Unable to create process using '"C:\Software\Python310\python.exe" "D:\Aliwall\ ......
quot Software install Python pip3

//# sourceURL=xxx

//# sourceURL=xxx eval(` function add(a,b){ debugger; return a + b; }; console.log(add(1,3)); //# sourceURL=angdh.js `) ......
sourceURL xxx

python ModuleNotFoundError_ No module named 'xxx'的解决方案

本文主要针对的自己写的包无法正常import的情况,如果是第三方包的话正常来说没有问题。 第三方包 主要考虑没有安装对应的版本以及包名写错了等奇葩情况,具体可参考ModuleNotFoundError: No module named ‘xxx’可能的解决方案大全 自建的包 如果是自己的包,可按照下 ......

2023-10-26 无法访问此网站网址为 http://xxx.yy.com/ 的网页可能暂时无法连接,或者它已永久性地移动到了新网址。==>该域名所解析的服务器ip不正确导致

新购一域名,并添加了解析,保存后若干分钟访问该域名,报错显示: 原因,我给域名添加的解析地址不正确,所以导致无法找到该服务器,故而报错。 看到圈中的【记录值】了吗,这里应该填你的服务器公网ip,如果填错了就无法访问。 解决方案,前往你的服务器管理后台,找到域名解析的地方,重新修改解析地址即可。 注: ......
网址 永久性 服务器 域名 网页

NLTK debug记录——"[nltk_data] Error loading xxx"下载数据集失败

问题:运行nltk.download("xxx")时遇到连接下载失败Error解决: 在gitee上下载对应的.zip词库包(如,nltk_data/pakages/copora/目录下的下载链接); NLTK下载数据集时会自动搜索某些以./nltk_data/为结尾的目录(见附注),找到一个这样的 ......
quot nltk_data loading 数据 Error

动态库加载失败:error while loading shared libraries: xxx.so: cannot open shared object file: No such file o

ldd main | grep not 由0.1 动态库的工作原理可知,只要把动态库libcalc.so的绝对路径添加到动态载入器ld-linux.so的搜索路径中,那么动态载入器就可以获取到动态库libcalc.so的绝对路径,接着就可以找到动态库文件libcalc.so,将动态库文件载入内存,然 ......
shared file libraries loading 动态

cypress 无法启动No version of Cypress is installed in: /Users/xxx/Library/Caches/Cypress/13.3.3/Cypress.app

使用npx cypress open 启动cypress 提示 No version of Cypress is installed in: /Users/xxx/Library/Caches/Cypress/13.3.3/Cypress.app npx cypress open No versio ......
Cypress installed cypress Library version

fatal: bad object refs/remotes/origin/xxx

解决方案: 1、项目的.git文件内的目录.git/logs/refs/remotes/origin/,删除该错误的本地远程分支; 2、执行git pull --rebase即可 类似错误信息例子: fatal: bad object refs/remotes/origin/xxx fatal: b ......
remotes object origin fatal refs

eslint提示 xxx should be listed in the project's dependencies

有时候手动安装了一个npm包A,npm包A里面包含了npm包B,这时候如果 import xxx from 'npm包B'; eslint会报错,提示 npm包B 不在 package.json 里面 解决方法:在 eslintrc.js 增加配置 module.exports = { rules: ......
dependencies project eslint should listed
共271篇  :2/10页 首页上一页2下一页尾页