Not
Spring Boot Configuration Annotation Processor not configured(最简单的解决办法)
在使用@ConfigurationProperties是报红:Spring Boot Configuration Annotation Processor not configured,如下图所示: 其实这个不影响程序运行,但作为程序员就是看着不舒服,网上也有解决办法,其中最多的就是说在pom.xm ......
SpringBoot配置了数据库依赖 报错: Failed to configure a DataSource: 'url' attribute is not specified and no embe
错误 2023-04-15 11:56:16.025 INFO 12028 [ restartedMain] ConditionEvaluationReportLoggingListener : Error starting ApplicationContext. To display the co ......
TypeScript 报错:Type '({ filename: string; createTime: string; filePath: string; fileId: number; } | undefined)[]' is not assignable to type 'PiFile[]'.
问题: 因为TypeScript不支持直接给一个接口类型的变量 赋一个未知的值。 如 const a:A = { name:'s' }; 你需要给这样的对象或数组值使用as 指定一个类型。 正确写法: const a:A = { name:'s' } as A; 数组写法一样: const a:A[ ......
repository does not exist or may require 'docker login'
理论上从 docker hub 拉取镜像时是不需要的登录, 所以就只有一个原因: repository does not exist 仓库类型将私有改成公开 ......
R语言:Some 'from' names in value not found on 'x' 报错
升级了dplyr后运行命令inter=inter %>% rename("gene"="V4") 就一直报错:Some 'from' names in value not found on 'x',如下所示: Error in rename(., gene = "V4") : Some 'from' ......
Plugin 'maven-surefire-plugin:2.12.4' not found(已解决)
今天按照视频教程配置maven插件(maven-surefire-plugin)时,老师说这是maven内部的插件,可以不用写<groupId></groupId>标签,然后就报红:Plugin 'maven-surefire-plugin:2.12.4' not found 也就是说这个插件找不到 ......
解决nvm升级node v18.14.0时/lib64/libm.so.6: version 'GLIBC_2.27' not found (required by node)问题
安装v18.14.0时的报错和解决方法 1.报错 [root@devops03 ~/.nvm]# nvm install v18.14.0 Downloading and installing node v18.14.0... Downloading https://npm.taobao.org/m ......
DotNetCore 提示 系统不支持“big5”编码。System does not support 'big5' encoding.
C# .NET Core 以 Big 5 (大五碼)編碼格式讀取檔案 (ruyut.com) C# .NET Core 以 Big 5 (大五碼)編碼格式讀取檔案 日期: 4月 27, 2022 之前在寫 C# .NET Framework 的時候要使用其他編碼格式很簡單,寫上編碼格式就可以了,但今 ......
Navicat常见错误怎么处理(Rsa Public Key not Find、Generate First a serial、No All Pattern Found!File Alre)
一:下载 一键获取软件 提取码: rtce 1.Navicat 数据库管理工具 :Navicat DBeaver 数据库管理工具:可以代替Navicat 2.Navicat Keygen Patch:激活工具 二:安装激活 1.安装 Navicat:直接下一步即可安装 Navicat Keygen ......
Visual Stadio 编译提示 The BaseOutputPath/OutputPath property is not set for project ...
完整的错误信息是: The BaseOutputPath/OutputPath property is not set for project 'xx.csproj'. Please check to make sure that you have specified a valid combina ......
501 Not authorised
相关连接:chrony 4.2. I keep getting the error 501 Not authorised This error indicates that chronyc sent the command to chronyd using a UDP socket instead ......
mssql server 2012数据库 jdk8 + springboot 项目 报错:SQL Server (SSL) encryption. Error: "The server selected protocol version TLS10 is not accepted by client preferences [TLS12]". ClientConnectionId
2023-04-13 11:01:39.727 [main] INFO com.alibaba.druid.pool.DruidDataSource:1003 - {dataSource-3,slave_2} inited 2023-04-13 11:01:39.846 [Druid-Connect ......
vite写jsx语法报错: [vite] Internal server error: Failed to parse source for import analysis because the content contains invalid JS syntax. If you use tsconfig.json, make sure to not set jsx to preserve.
1.安装vite的jsx包 npm i @vitejs/plugin-vue-jsx --save 2.安装所有依赖 npm i 3.在vite.config.ts中配置 import { defineConfig } from 'vite'; import vue from '@vitejs/pl ......
[Java EE]SpringBoot/Tomcat之启动时报"Error: Could not find or load main class CLASS xxxx"、"no main manifest attribute"异常
环境信息如下: OS: CENTOS 7 Tomcat : 9.0.46 SpringBoot: 2.3.12.RELASE Build JDK: 1.8.0_261 Runetime JDK : openjdk 1.8.0_362 1 “Error: Could not find or load ......
cnetos8上RPM安装mysql8后,修改初始密码提示Your password does not satisfy the current policy requirements的解决方法
我在修改mysql8初始密码是遇到了Your password does not satisfy the current policy requirements,如果您的mysql版本5.x可能不太合适。 下图是我遇到的问题: 意思是,密码不符合密码验证要求。但是mysql8的初始密码连验证要求都查 ......
MSBUILD : error MSB3428: Could not load the Visual C++ component "VCBuild.exe".
完整报错信息: MSBUILD : error MSB3428: Could not load the Visual C++ component "VCBuild.exe". To fix this, 1) install the .NET Framework 2.0 SDK, 2) install ......
Can not construct instance of com.hm.drgs.platform.common.dto.data.group.DrgsRecordGroupResultDto, problem: Should never call 'set' on setterless property
报错全部信息: JSON parse error: Can not construct instance of com.hm.drgs.platform.common.dto.data.group.DrgsRecordGroupResultDto, problem: Should never cal ......
Geoserver启动时提示:The GEOSERVER_HOME variable is not defined
场景 GeoServer简介、下载、配置启动、发布shapefile全流程(图文实践): https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/109636080 在下载解压之后点击启动bat时提示: The GEOSERVER_HOME ......
ll: command not found
原理: ll命令是ls -l的别名,有些系统没有预设这个别名 解决方法: vim ~/.bashrc 写入alias ll='ls -l' source ~/.bashrc cd /usr/bin/ vim ll 写入alias ll='ls -l' ......
Raspberry Pi crontab not work bug All In One
Raspberry Pi crontab not work bug All In One
Raspberry Pi crontab 不执行 bug
......
”file not recognized: file format not recognized“错误,不同架构动态库交叉编译的学习记录
在学习modbus协议时,发现了一些关于libmodbus库编译的问题 我将虚拟机作为客户端,树莓派作为服务器端,分别编写modbus-tcp协议的客户端/服务器端代码 在ubuntu虚拟机上可以成功编译,但是在树莓派上会报:”file not recognized: file format not ......
Jmeter 启动时报错:Not able to find Java executable or version. Please check your Java installation
安装java环境,cmd窗口中执行java-version 可以看到java的版本信息。 双击jmeter启动文件,报错:Not able to find Java executable or version. Please check your Java installation 解决办法: 在启 ......
Springboot报错:Could not resolve view with name 'index' in servlet with name 'dispatcherServlet'
该异常是因为用定义了带@EnableWebMvc注解的配置类后发生的,在带该注解的配置类中加入下面的代码就可以了: @Bean public InternalResourceViewResolver viewResolver() { InternalResourceViewResolver view ......
gzip 解压文件报错 gzip.BadGzipFile: Not a gzipped file (b'\n')
因为获取的是Unicode码,需要decode 才会正常 解决办法:按行获取然后 ......
delphi 11.3 java.ioexception:cleartext http traffic [IP地址] not permitted
要在AndroidManifest.xml添加如下属性即可: 参考:How to Fix Cleartext HTTP Traffic not Permitted in Android - TREND OCEANS ......
安装python第三方库报:is not a supported wheel on this platform
1,在cmd中输入pip debug --verbose,如下图圈红的就是当前python使用的标签,所以可以把cryptography-40.0.1-pp39-pypy39_pp73-win_amd64.whl改成cryptography-40.0.1-py39-none-any.whl就能安装成 ......
golang 编译碰到问题 Package python-2.7 was not found in the pkg-config search path.
golang 运行单测或者编译程序时提示需要配置 PKG_CONFIG_PATH 环境变量,原因是在程序里使用了 go-python 包,要求运行环境有 python2.7,并设置 PKG_CONFIG_PATH 环境变量,解决方案如下: # pkg-config --cflags -- pytho ......
Content type 'application/json' not supported] (已解决)
今天在用postman发请求时,以Json的形式发送一个POJO参数,结果一直报错:WARNING] Resolved [org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'application/jso ......
piix4_smbus : SMBus Host Controller not enabled,虚拟机无法启动
昨晚准备开着虚拟机继续跑数据,结果发现虚拟机直接不开机了,显示piix4_smbus : SMBus Host Controller not enabled df -h,看各个分区的情况,/目录下占用率为100%,突然想起来在VMWARE内扩容并不会影响分区的大小,还需要进行分配,但现在肯定分配不了 ......
解决前端启动报错:This is probably not a problem with npm. There is likely additional logging output above.
在执行 npm run dev 运行项目的时候报错: {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"}) npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! phan ......